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/HTMLOListElement.java

73 lines
2.1 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Ordered list. See the <a
href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-OL">
OL element definition </a> 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 <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);
/**
Starting sequence number. See the <a
href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-start">
start attribute definition </a> 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 <a
href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-type-OL">
type attribute definition </a> 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
}