//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 TEXTAREA element definition 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 value ). @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 accesskey attribute definition 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 cols attribute definition 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 disabled attribute definition 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 name attribute definition 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 readonly attribute definition 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 rows attribute definition 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 tabindex attribute definition 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 TEXTAREA . @short Select the contents of the TEXTAREA . */ public native void select(); // DOM::HTMLTextAreaElement* HTMLTextAreaElement(DOM::HTMLTextAreaElementImpl* arg1); >>>> NOT CONVERTED }