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/kdejava/koala/org/kde/koala/HTMLUListElement.java

60 lines
1.7 KiB

//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
}