You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/AbstractView.java

54 lines
1.6 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Introduced in DOM Level 2
A base interface that all views shall derive from.
@short Introduced in DOM Level 2
*/
public class AbstractView implements QtSupport {
private long _qt;
private boolean _allocatedInJavaWorld = true;
protected AbstractView(Class dummy){}
public AbstractView() {
newAbstractView();
}
private native void newAbstractView();
public AbstractView(AbstractView other) {
newAbstractView(other);
}
private native void newAbstractView(AbstractView other);
/**
The source DocumentView of which this is an AbstractView.
@short The source DocumentView of which this is an AbstractView.
*/
public native Document document();
/**
Introduced in DOM Level 2
This method is from the ViewCSS interface
This method is used to get the computed style as it is defined in
[CSS2].
@param elt The element whose style is to be computed. This parameter
cannot be null.
@param pseudoElt The pseudo-element or null if none.
@return The computed style. The CSSStyleDeclaration is read-only and
contains only absolute values.
@short Introduced in DOM Level 2 This method is from the ViewCSS interface
*/
public native CSSStyleDeclaration getComputedStyle(Element elt, String pseudoElt);
/**
not part of the DOM
@short
*/
// DOM::AbstractViewImpl* handle(); >>>> NOT CONVERTED
public native boolean isNull();
// DOM::AbstractView* AbstractView(DOM::AbstractViewImpl* arg1); >>>> NOT CONVERTED
}