summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLLabelElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLLabelElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLLabelElement.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLLabelElement.java b/kdejava/koala/org/kde/koala/HTMLLabelElement.java
new file mode 100644
index 00000000..b8498e66
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLLabelElement.java
@@ -0,0 +1,59 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ Form field label text. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-LABEL">
+ LABEL element definition </a> in HTML 4.0.
+ @short Form field label text.
+
+*/
+public class HTMLLabelElement extends HTMLElement {
+ protected HTMLLabelElement(Class dummy){super((Class) null);}
+ public HTMLLabelElement() {
+ super((Class) null);
+ newHTMLLabelElement();
+ }
+ private native void newHTMLLabelElement();
+ public HTMLLabelElement(HTMLLabelElement other) {
+ super((Class) null);
+ newHTMLLabelElement(other);
+ }
+ private native void newHTMLLabelElement(HTMLLabelElement other);
+ public HTMLLabelElement(Node other) {
+ super((Class) null);
+ newHTMLLabelElement(other);
+ }
+ private native void newHTMLLabelElement(Node other);
+ /**
+ A single character access key to give access to the form
+ control. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey">
+ accesskey attribute definition </a> in HTML 4.0.
+ @short A single character access key to give access to the form control.
+ */
+ public native String accessKey();
+ /**
+ see accessKey
+ @short see accessKey
+ */
+ public native void setAccessKey(String arg1);
+ /**
+ This attribute links this label with another form control by
+ <code>id</code> attribute. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-for">
+ for attribute definition </a> in HTML 4.0.
+ @short This attribute links this label with another form control by <code>id</code> attribute.
+ */
+ public native String htmlFor();
+ /**
+ see htmlFor
+ @short see htmlFor
+ */
+ public native void setHtmlFor(String arg1);
+ // DOM::HTMLLabelElement* HTMLLabelElement(DOM::HTMLLabelElementImpl* arg1); >>>> NOT CONVERTED
+}