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

53 lines
1.6 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
This element is used for single-line text input. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-ISINDEX">
ISINDEX element definition </a> in HTML 4.0. This element is
deprecated in HTML 4.0.
@short This element is used for single-line text input.
*/
public class HTMLIsIndexElement extends HTMLElement {
protected HTMLIsIndexElement(Class dummy){super((Class) null);}
public HTMLIsIndexElement() {
super((Class) null);
newHTMLIsIndexElement();
}
private native void newHTMLIsIndexElement();
public HTMLIsIndexElement(HTMLIsIndexElement other) {
super((Class) null);
newHTMLIsIndexElement(other);
}
private native void newHTMLIsIndexElement(HTMLIsIndexElement other);
public HTMLIsIndexElement(Node other) {
super((Class) null);
newHTMLIsIndexElement(other);
}
private native void newHTMLIsIndexElement(Node other);
/**
### KDE 4.0: remove
@short ### KDE 4.
*/
public native HTMLFormElement formElement();
/**
The prompt message. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-prompt">
prompt attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short The prompt message.
*/
public native String prompt();
/**
see prompt
@short see prompt
*/
public native void setPrompt(String arg1);
// DOM::HTMLIsIndexElement* HTMLIsIndexElement(DOM::HTMLIsIndexElementImpl* arg1); >>>> NOT CONVERTED
}