summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/HTMLLIElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/HTMLLIElement.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/HTMLLIElement.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/HTMLLIElement.java b/tdejava/koala/org/trinitydesktop/koala/HTMLLIElement.java
new file mode 100644
index 00000000..789779a6
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/HTMLLIElement.java
@@ -0,0 +1,59 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.QtSupport;
+
+/**
+
+ List item. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-LI">
+ LI element definition </a> in HTML 4.0.
+ @short List item.
+
+*/
+public class HTMLLIElement extends HTMLElement {
+ protected HTMLLIElement(Class dummy){super((Class) null);}
+ public HTMLLIElement() {
+ super((Class) null);
+ newHTMLLIElement();
+ }
+ private native void newHTMLLIElement();
+ public HTMLLIElement(HTMLLIElement other) {
+ super((Class) null);
+ newHTMLLIElement(other);
+ }
+ private native void newHTMLLIElement(HTMLLIElement other);
+ public HTMLLIElement(Node other) {
+ super((Class) null);
+ newHTMLLIElement(other);
+ }
+ private native void newHTMLLIElement(Node other);
+ /**
+ List item bullet style. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-type-LI">
+ type attribute definition </a> in HTML 4.0. This attribute is
+ deprecated in HTML 4.0.
+ @short List item bullet style.
+ */
+ public native String type();
+ /**
+ see type
+ @short see type
+ */
+ public native void setType(String arg1);
+ /**
+ Reset sequence number when used in <code>OL</code> See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-value-LI">
+ value attribute definition </a> in HTML 4.0. This attribute is
+ deprecated in HTML 4.0.
+ @short Reset sequence number when used in <code>OL</code> See the <a href="http://www.
+ */
+ public native long value();
+ /**
+ see value
+ @short see value
+ */
+ public native void setValue(long arg1);
+ // DOM::HTMLLIElement* HTMLLIElement(DOM::HTMLLIElementImpl* arg1); >>>> NOT CONVERTED
+}