summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLBodyElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLBodyElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLBodyElement.java114
1 files changed, 0 insertions, 114 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLBodyElement.java b/kdejava/koala/org/kde/koala/HTMLBodyElement.java
deleted file mode 100644
index 3ad71cd2..00000000
--- a/kdejava/koala/org/kde/koala/HTMLBodyElement.java
+++ /dev/null
@@ -1,114 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.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
-}