summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLDirectoryElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLDirectoryElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLDirectoryElement.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLDirectoryElement.java b/kdejava/koala/org/kde/koala/HTMLDirectoryElement.java
new file mode 100644
index 00000000..18250cc5
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLDirectoryElement.java
@@ -0,0 +1,47 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ Directory list. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-DIR">
+ DIR element definition </a> in HTML 4.0. This element is deprecated
+ in HTML 4.0.
+ @short Directory list.
+
+*/
+public class HTMLDirectoryElement extends HTMLElement {
+ protected HTMLDirectoryElement(Class dummy){super((Class) null);}
+ public HTMLDirectoryElement() {
+ super((Class) null);
+ newHTMLDirectoryElement();
+ }
+ private native void newHTMLDirectoryElement();
+ public HTMLDirectoryElement(HTMLDirectoryElement other) {
+ super((Class) null);
+ newHTMLDirectoryElement(other);
+ }
+ private native void newHTMLDirectoryElement(HTMLDirectoryElement other);
+ public HTMLDirectoryElement(Node other) {
+ super((Class) null);
+ newHTMLDirectoryElement(other);
+ }
+ private native void newHTMLDirectoryElement(Node other);
+ /**
+ Reduce spacing between list items. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-compact">
+ compact attribute definition </a> in HTML 4.0. This attribute
+ is deprecated in HTML 4.0.
+ @short Reduce spacing between list items.
+ */
+ public native boolean compact();
+ /**
+ see compact
+ @short see compact
+ */
+ public native void setCompact(boolean arg1);
+ // DOM::HTMLDirectoryElement* HTMLDirectoryElement(DOM::HTMLDirectoryElementImpl* arg1); >>>> NOT CONVERTED
+}