summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/AbstractView.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/AbstractView.java')
-rw-r--r--kdejava/koala/org/kde/koala/AbstractView.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/AbstractView.java b/kdejava/koala/org/kde/koala/AbstractView.java
new file mode 100644
index 00000000..c2dbfb3a
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/AbstractView.java
@@ -0,0 +1,53 @@
+//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
+}