diff options
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/AbstractView.java')
-rw-r--r-- | tdejava/koala/org/trinitydesktop/koala/AbstractView.java | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/AbstractView.java b/tdejava/koala/org/trinitydesktop/koala/AbstractView.java new file mode 100644 index 00000000..5a1c35cd --- /dev/null +++ b/tdejava/koala/org/trinitydesktop/koala/AbstractView.java @@ -0,0 +1,53 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.trinitydesktop.koala; + +import org.trinitydesktop.qt.Qt; +import org.trinitydesktop.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 +} |