summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLDListElement.java
blob: 1f31bdb97f8cf72ae9587cf2e9c7101cdf4549cb (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

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

*/
public class HTMLDListElement extends HTMLElement  {
	protected HTMLDListElement(Class dummy){super((Class) null);}
	public HTMLDListElement() {
		super((Class) null);
		newHTMLDListElement();
	}
	private native void newHTMLDListElement();
	public HTMLDListElement(HTMLDListElement other) {
		super((Class) null);
		newHTMLDListElement(other);
	}
	private native void newHTMLDListElement(HTMLDListElement other);
	public HTMLDListElement(Node other) {
		super((Class) null);
		newHTMLDListElement(other);
	}
	private native void newHTMLDListElement(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::HTMLDListElement* HTMLDListElement(DOM::HTMLDListElementImpl* arg1); >>>> NOT CONVERTED
}