You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.8 KiB
Java
58 lines
1.8 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.koala;
|
|
|
|
import org.kde.qt.Qt;
|
|
import org.kde.qt.QtSupport;
|
|
|
|
/**
|
|
|
|
Group options together in logical subdivisions. See the <a
|
|
href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-OPTGROUP">
|
|
OPTGROUP element definition </a> in HTML 4.0.
|
|
@short Group options together in logical subdivisions.
|
|
|
|
*/
|
|
public class HTMLOptGroupElement extends HTMLElement {
|
|
protected HTMLOptGroupElement(Class dummy){super((Class) null);}
|
|
public HTMLOptGroupElement() {
|
|
super((Class) null);
|
|
newHTMLOptGroupElement();
|
|
}
|
|
private native void newHTMLOptGroupElement();
|
|
public HTMLOptGroupElement(HTMLOptGroupElement other) {
|
|
super((Class) null);
|
|
newHTMLOptGroupElement(other);
|
|
}
|
|
private native void newHTMLOptGroupElement(HTMLOptGroupElement other);
|
|
public HTMLOptGroupElement(Node other) {
|
|
super((Class) null);
|
|
newHTMLOptGroupElement(other);
|
|
}
|
|
private native void newHTMLOptGroupElement(Node other);
|
|
/**
|
|
The control is unavailable in this context. See the <a
|
|
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled">
|
|
disabled attribute definition </a> in HTML 4.0.
|
|
@short The control is unavailable in this context.
|
|
*/
|
|
public native boolean disabled();
|
|
/**
|
|
see disabled
|
|
@short see disabled
|
|
*/
|
|
public native void setDisabled(boolean arg1);
|
|
/**
|
|
Assigns a label to this option group. See the <a
|
|
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-label-OPTGROUP">
|
|
label attribute definition </a> in HTML 4.0.
|
|
@short Assigns a label to this option group.
|
|
*/
|
|
public native String label();
|
|
/**
|
|
see label
|
|
@short see label
|
|
*/
|
|
public native void setLabel(String arg1);
|
|
// DOM::HTMLOptGroupElement* HTMLOptGroupElement(DOM::HTMLOptGroupElementImpl* arg1); >>>> NOT CONVERTED
|
|
}
|