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

169 lines
5.0 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Multi-line text field. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-TEXTAREA">
TEXTAREA element definition </a> in HTML 4.0.
@short Multi-line text field.
*/
public class HTMLTextAreaElement extends HTMLElement {
protected HTMLTextAreaElement(Class dummy){super((Class) null);}
public HTMLTextAreaElement() {
super((Class) null);
newHTMLTextAreaElement();
}
private native void newHTMLTextAreaElement();
public HTMLTextAreaElement(HTMLTextAreaElement other) {
super((Class) null);
newHTMLTextAreaElement(other);
}
private native void newHTMLTextAreaElement(HTMLTextAreaElement other);
public HTMLTextAreaElement(Node other) {
super((Class) null);
newHTMLTextAreaElement(other);
}
private native void newHTMLTextAreaElement(Node other);
/**
Stores the initial control value (i.e., the initial value of
<code>value</code> ).
@short Stores the initial control value (i.
*/
public native String defaultValue();
/**
see defaultValue
@short see defaultValue
*/
public native void setDefaultValue(String arg1);
/**
### 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);
/**
Width of control (in characters). See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-cols-TEXTAREA">
cols attribute definition </a> in HTML 4.0.
@short Width of control (in characters).
*/
public native long cols();
/**
see cols
@short see cols
*/
public native void setCols(long arg1);
/**
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);
/**
Form control or object name when submitted with a form. See the
<a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-TEXTAREA">
name attribute definition </a> in HTML 4.0.
@short Form control or object name when submitted with a form.
*/
public native String name();
/**
see name
@short see name
*/
public native void setName(String arg1);
/**
This control is read-only. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-readonly">
readonly attribute definition </a> in HTML 4.0.
@short This control is read-only.
*/
public native boolean readOnly();
/**
see readOnly
@short see readOnly
*/
public native void setReadOnly(boolean arg1);
/**
Number of text rows. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-rows-TEXTAREA">
rows attribute definition </a> in HTML 4.0.
@short Number of text rows.
*/
public native long rows();
/**
see rows
@short see rows
*/
public native void setRows(long arg1);
/**
Index that represents the element's position in the tabbing
order. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex">
tabindex attribute definition </a> in HTML 4.0.
@short Index that represents the element's position in the tabbing order.
*/
public native long tabIndex();
/**
see tabIndex
@short see tabIndex
*/
public native void setTabIndex(long arg1);
/**
The type of this form control.
@short The type of this form control.
*/
public native String type();
/**
The current textual content of the multi-line text field. If
the entirety of the data can not fit into a single wstring, the
implementation may truncate the data.
@short The current textual content of the multi-line text field.
*/
public native String value();
/**
see value
@short see value
*/
public native void setValue(String arg1);
/**
Removes keyboard focus from this element.
@short Removes keyboard focus from this element.
*/
public native void blur();
/**
Gives keyboard focus to this element.
@short Gives keyboard focus to this element.
*/
public native void focus();
/**
Select the contents of the <code>TEXTAREA</code> .
@short Select the contents of the <code>TEXTAREA</code> .
*/
public native void select();
// DOM::HTMLTextAreaElement* HTMLTextAreaElement(DOM::HTMLTextAreaElementImpl* arg1); >>>> NOT CONVERTED
}