//Auto-generated by kalyptus. DO NOT EDIT. package org.trinitydesktop.koala; import org.trinitydesktop.qt.Qt; import org.trinitydesktop.qt.QtSupport; /** Ordered list. See the OL element definition in HTML 4.0. @short Ordered list. */ public class HTMLOListElement extends HTMLElement { protected HTMLOListElement(Class dummy){super((Class) null);} public HTMLOListElement() { super((Class) null); newHTMLOListElement(); } private native void newHTMLOListElement(); public HTMLOListElement(HTMLOListElement other) { super((Class) null); newHTMLOListElement(other); } private native void newHTMLOListElement(HTMLOListElement other); public HTMLOListElement(Node other) { super((Class) null); newHTMLOListElement(other); } private native void newHTMLOListElement(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); /** Starting sequence number. See the start attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short Starting sequence number. */ public native long start(); /** see start @short see start */ public native void setStart(long arg1); /** Numbering style. See the type attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short Numbering style. */ public native String type(); /** see type @short see type */ public native void setType(String arg1); // DOM::HTMLOListElement* HTMLOListElement(DOM::HTMLOListElementImpl* arg1); >>>> NOT CONVERTED }