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/tdejava/koala/org/trinitydesktop/koala/HTMLLegendElement.java

66 lines
2.0 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;
/**
Provides a caption for a <code>FIELDSET</code> grouping. See the
<a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-LEGEND">
LEGEND element definition </a> in HTML 4.0.
@short Provides a caption for a <code>FIELDSET</code> grouping.
*/
public class HTMLLegendElement extends HTMLElement {
protected HTMLLegendElement(Class dummy){super((Class) null);}
public HTMLLegendElement() {
super((Class) null);
newHTMLLegendElement();
}
private native void newHTMLLegendElement();
public HTMLLegendElement(HTMLLegendElement other) {
super((Class) null);
newHTMLLegendElement(other);
}
private native void newHTMLLegendElement(HTMLLegendElement other);
public HTMLLegendElement(Node other) {
super((Class) null);
newHTMLLegendElement(other);
}
private native void newHTMLLegendElement(Node other);
/**
### KDE 4.0: remove
@short ### KDE 4.
*/
public native HTMLFormElement formElement();
/**
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);
/**
Text alignment relative to <code>FIELDSET</code> . See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-align-LEGEND">
align attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Text alignment relative to <code>FIELDSET</code> .
*/
public native String align();
/**
see align
@short see align
*/
public native void setAlign(String arg1);
// DOM::HTMLLegendElement* HTMLLegendElement(DOM::HTMLLegendElementImpl* arg1); >>>> NOT CONVERTED
}