summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLDirectoryElement.java
blob: 18250cc555939b0c2a78531a1460f7d9a4659002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
}