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/HTMLTitleElement.java

44 lines
1.2 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
The document title. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-TITLE">
TITLE element definition </a> in HTML 4.0.
@short The document title.
*/
public class HTMLTitleElement extends HTMLElement {
protected HTMLTitleElement(Class dummy){super((Class) null);}
public HTMLTitleElement() {
super((Class) null);
newHTMLTitleElement();
}
private native void newHTMLTitleElement();
public HTMLTitleElement(HTMLTitleElement other) {
super((Class) null);
newHTMLTitleElement(other);
}
private native void newHTMLTitleElement(HTMLTitleElement other);
public HTMLTitleElement(Node other) {
super((Class) null);
newHTMLTitleElement(other);
}
private native void newHTMLTitleElement(Node other);
/**
The specified title as a string.
@short The specified title as a string.
*/
public native String text();
/**
see text
@short see text
*/
public native void setText(String arg1);
// DOM::HTMLTitleElement* HTMLTitleElement(DOM::HTMLTitleElementImpl* arg1); >>>> NOT CONVERTED
}