summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/HTMLHtmlElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/HTMLHtmlElement.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/HTMLHtmlElement.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/HTMLHtmlElement.java b/tdejava/koala/org/trinitydesktop/koala/HTMLHtmlElement.java
new file mode 100644
index 00000000..31b20942
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/HTMLHtmlElement.java
@@ -0,0 +1,46 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.QtSupport;
+
+/**
+
+ Root of an HTML document. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-HTML">
+ HTML element definition </a> in HTML 4.0.
+ @short Root of an HTML document.
+
+*/
+public class HTMLHtmlElement extends HTMLElement {
+ protected HTMLHtmlElement(Class dummy){super((Class) null);}
+ public HTMLHtmlElement() {
+ super((Class) null);
+ newHTMLHtmlElement();
+ }
+ private native void newHTMLHtmlElement();
+ public HTMLHtmlElement(HTMLHtmlElement other) {
+ super((Class) null);
+ newHTMLHtmlElement(other);
+ }
+ private native void newHTMLHtmlElement(HTMLHtmlElement other);
+ public HTMLHtmlElement(Node other) {
+ super((Class) null);
+ newHTMLHtmlElement(other);
+ }
+ private native void newHTMLHtmlElement(Node other);
+ /**
+ Version information about the document's DTD. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-version">
+ version attribute definition </a> in HTML 4.0. This attribute
+ is deprecated in HTML 4.0.
+ @short Version information about the document's DTD.
+ */
+ public native String version();
+ /**
+ see version
+ @short see version
+ */
+ public native void setVersion(String arg1);
+ // DOM::HTMLHtmlElement* HTMLHtmlElement(DOM::HTMLHtmlElementImpl* arg1); >>>> NOT CONVERTED
+}