summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLLIElement.java
blob: 101e6db807516c940398514f2e1f490a25cdce2c (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;

/**

 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
}