summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLUListElement.java
blob: 46dfdec59184285de376c5c17652cad2e1b52a10 (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
48
49
50
51
52
53
54
55
56
57
58
59
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 Unordered list. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-UL">
 UL element definition </a> in HTML 4.0.
 		@short    Unordered list.

*/
public class HTMLUListElement extends HTMLElement  {
	protected HTMLUListElement(Class dummy){super((Class) null);}
	public HTMLUListElement() {
		super((Class) null);
		newHTMLUListElement();
	}
	private native void newHTMLUListElement();
	public HTMLUListElement(HTMLUListElement other) {
		super((Class) null);
		newHTMLUListElement(other);
	}
	private native void newHTMLUListElement(HTMLUListElement other);
	public HTMLUListElement(Node other) {
		super((Class) null);
		newHTMLUListElement(other);
	}
	private native void newHTMLUListElement(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);
	/**	
		 Bullet style. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-type-UL">
		 type attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Bullet style.
	*/
	public native String type();
	/**	
		 see type
		     		@short    see type
	*/
	public native void setType(String arg1);
	// DOM::HTMLUListElement* HTMLUListElement(DOM::HTMLUListElementImpl* arg1); >>>> NOT CONVERTED
}