//Auto-generated by kalyptus. DO NOT EDIT. package org.trinitydesktop.koala; import org.trinitydesktop.qt.Qt; import org.trinitydesktop.qt.QtSupport; /** Unordered list. See the UL element definition 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 compact attribute definition 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 type attribute definition 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 }