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

60 lines
1.9 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Form field label text. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-LABEL">
LABEL element definition </a> in HTML 4.0.
@short Form field label text.
*/
public class HTMLLabelElement extends HTMLElement {
protected HTMLLabelElement(Class dummy){super((Class) null);}
public HTMLLabelElement() {
super((Class) null);
newHTMLLabelElement();
}
private native void newHTMLLabelElement();
public HTMLLabelElement(HTMLLabelElement other) {
super((Class) null);
newHTMLLabelElement(other);
}
private native void newHTMLLabelElement(HTMLLabelElement other);
public HTMLLabelElement(Node other) {
super((Class) null);
newHTMLLabelElement(other);
}
private native void newHTMLLabelElement(Node other);
/**
A single character access key to give access to the form
control. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey">
accesskey attribute definition </a> in HTML 4.0.
@short A single character access key to give access to the form control.
*/
public native String accessKey();
/**
see accessKey
@short see accessKey
*/
public native void setAccessKey(String arg1);
/**
This attribute links this label with another form control by
<code>id</code> attribute. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-for">
for attribute definition </a> in HTML 4.0.
@short This attribute links this label with another form control by <code>id</code> attribute.
*/
public native String htmlFor();
/**
see htmlFor
@short see htmlFor
*/
public native void setHtmlFor(String arg1);
// DOM::HTMLLabelElement* HTMLLabelElement(DOM::HTMLLabelElementImpl* arg1); >>>> NOT CONVERTED
}