summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLOListElement.java
blob: 81650e3b64c0274c928dd62b06b78a38c7fd44e7 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

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

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