You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/tdejava/koala/org/trinitydesktop/koala/HTMLDListElement.java

47 lines
1.4 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.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
}