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