You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/HTMLHtmlElement.java

47 lines
1.4 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.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
}