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/HTMLLIElement.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;
/**
List item. See the <a
href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-LI">
LI element definition </a> in HTML 4.0.
@short List item.
*/
public class HTMLLIElement extends HTMLElement {
protected HTMLLIElement(Class dummy){super((Class) null);}
public HTMLLIElement() {
super((Class) null);
newHTMLLIElement();
}
private native void newHTMLLIElement();
public HTMLLIElement(HTMLLIElement other) {
super((Class) null);
newHTMLLIElement(other);
}
private native void newHTMLLIElement(HTMLLIElement other);
public HTMLLIElement(Node other) {
super((Class) null);
newHTMLLIElement(other);
}
private native void newHTMLLIElement(Node other);
/**
List item bullet style. See the <a
href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-type-LI">
type attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short List item bullet style.
*/
public native String type();
/**
see type
@short see type
*/
public native void setType(String arg1);
/**
Reset sequence number when used in <code>OL</code> See the <a
href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-value-LI">
value attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Reset sequence number when used in <code>OL</code> See the <a href="http://www.
*/
public native long value();
/**
see value
@short see value
*/
public native void setValue(long arg1);
// DOM::HTMLLIElement* HTMLLIElement(DOM::HTMLLIElementImpl* arg1); >>>> NOT CONVERTED
}