summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/HTMLBodyElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/HTMLBodyElement.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/HTMLBodyElement.java114
1 files changed, 114 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/HTMLBodyElement.java b/tdejava/koala/org/trinitydesktop/koala/HTMLBodyElement.java
new file mode 100644
index 00000000..e558833f
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/HTMLBodyElement.java
@@ -0,0 +1,114 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.QtSupport;
+
+/**
+
+ The HTML document body. This element is always present in the DOM
+ API, even if the tags are not present in the source document. See
+ the <a
+ href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-BODY">
+ BODY element definition </a> in HTML 4.0.
+ @short The HTML document body.
+
+*/
+public class HTMLBodyElement extends HTMLElement {
+ protected HTMLBodyElement(Class dummy){super((Class) null);}
+ public HTMLBodyElement() {
+ super((Class) null);
+ newHTMLBodyElement();
+ }
+ private native void newHTMLBodyElement();
+ public HTMLBodyElement(HTMLBodyElement other) {
+ super((Class) null);
+ newHTMLBodyElement(other);
+ }
+ private native void newHTMLBodyElement(HTMLBodyElement other);
+ public HTMLBodyElement(Node other) {
+ super((Class) null);
+ newHTMLBodyElement(other);
+ }
+ private native void newHTMLBodyElement(Node other);
+ /**
+ Color of active links (after mouse-button down, but before
+ mouse-button up). See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-alink">
+ alink attribute definition </a> in HTML 4.0. This attribute is
+ deprecated in HTML 4.0.
+ @short Color of active links (after mouse-button down, but before mouse-button up).
+ */
+ public native String aLink();
+ /**
+ see aLink
+ @short see aLink
+ */
+ public native void setALink(String arg1);
+ /**
+ URI of the background texture tile image. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-background">
+ background attribute definition </a> in HTML 4.0. This
+ attribute is deprecated in HTML 4.0.
+ @short URI of the background texture tile image.
+ */
+ public native String background();
+ /**
+ see background
+ @short see background
+ */
+ public native void setBackground(String arg1);
+ /**
+ Document background color. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-bgcolor">
+ bgcolor attribute definition </a> in HTML 4.0. This attribute
+ is deprecated in HTML 4.0.
+ @short Document background color.
+ */
+ public native String bgColor();
+ /**
+ see bgColor
+ @short see bgColor
+ */
+ public native void setBgColor(String arg1);
+ /**
+ Color of links that are not active and unvisited. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-link">
+ link attribute definition </a> in HTML 4.0. This attribute is
+ deprecated in HTML 4.0.
+ @short Color of links that are not active and unvisited.
+ */
+ public native String link();
+ /**
+ see link
+ @short see link
+ */
+ public native void setLink(String arg1);
+ /**
+ Document text color. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-text">
+ text attribute definition </a> in HTML 4.0. This attribute is
+ deprecated in HTML 4.0.
+ @short Document text color.
+ */
+ public native String text();
+ /**
+ see text
+ @short see text
+ */
+ public native void setText(String arg1);
+ /**
+ Color of links that have been visited by the user. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-vlink">
+ vlink attribute definition </a> in HTML 4.0. This attribute is
+ deprecated in HTML 4.0.
+ @short Color of links that have been visited by the user.
+ */
+ public native String vLink();
+ /**
+ see vLink
+ @short see vLink
+ */
+ public native void setVLink(String arg1);
+ // DOM::HTMLBodyElement* HTMLBodyElement(DOM::HTMLBodyElementImpl* arg1); >>>> NOT CONVERTED
+}