diff options
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLBaseElement.java')
-rw-r--r-- | kdejava/koala/org/kde/koala/HTMLBaseElement.java | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLBaseElement.java b/kdejava/koala/org/kde/koala/HTMLBaseElement.java new file mode 100644 index 00000000..16d82d36 --- /dev/null +++ b/kdejava/koala/org/kde/koala/HTMLBaseElement.java @@ -0,0 +1,57 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.QtSupport; + +/** + + Document base URI. See the <a + href="http://www.w3.org/TR/REC-html40/struct/links.html#edef-BASE"> + BASE element definition </a> in HTML 4.0. + @short Document base URI. + +*/ +public class HTMLBaseElement extends HTMLElement { + protected HTMLBaseElement(Class dummy){super((Class) null);} + public HTMLBaseElement() { + super((Class) null); + newHTMLBaseElement(); + } + private native void newHTMLBaseElement(); + public HTMLBaseElement(HTMLBaseElement other) { + super((Class) null); + newHTMLBaseElement(other); + } + private native void newHTMLBaseElement(HTMLBaseElement other); + public HTMLBaseElement(Node other) { + super((Class) null); + newHTMLBaseElement(other); + } + private native void newHTMLBaseElement(Node other); + /** + The base URI See the <a + href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href-BASE"> + href attribute definition </a> in HTML 4.0. + @short The base URI See the <a href="http://www. + */ + public native String href(); + /** + see href + @short see href + */ + public native void setHref(String arg1); + /** + The default target frame. See the <a + href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target"> + target attribute definition </a> in HTML 4.0. + @short The default target frame. + */ + public native String target(); + /** + see target + @short see target + */ + public native void setTarget(String arg1); + // DOM::HTMLBaseElement* HTMLBaseElement(DOM::HTMLBaseElementImpl* arg1); >>>> NOT CONVERTED +} |