org.kde.koala
Class HTMLTextAreaElement

java.lang.Object
  extended by org.kde.koala.Node
      extended by org.kde.koala.Element
          extended by org.kde.koala.HTMLElement
              extended by org.kde.koala.HTMLTextAreaElement
All Implemented Interfaces:
org.kde.qt.QtSupport

public class HTMLTextAreaElement
extends HTMLElement

Multi-line text field. See the TEXTAREA element definition in HTML 4.0.


Constructor Summary
  HTMLTextAreaElement()
           
protected HTMLTextAreaElement(java.lang.Class dummy)
           
  HTMLTextAreaElement(HTMLTextAreaElement other)
           
  HTMLTextAreaElement(Node other)
           
 
Method Summary
 java.lang.String accessKey()
          A single character access key to give access to the form control.
 void blur()
          Removes keyboard focus from this element.
 long cols()
          Width of control (in characters).
 java.lang.String defaultValue()
          Stores the initial control value (i.e., the initial value of value ).
 boolean disabled()
          The control is unavailable in this context.
 void focus()
          Gives keyboard focus to this element.
 HTMLFormElement formElement()
          ### KDE 4.0: remove.
 java.lang.String name()
          Form control or object name when submitted with a form.
 boolean readOnly()
          This control is read-only.
 long rows()
          Number of text rows.
 void select()
          Select the contents of the TEXTAREA .
 void setAccessKey(java.lang.String arg1)
          see accessKey
 void setCols(long arg1)
          see cols
 void setDefaultValue(java.lang.String arg1)
          see defaultValue
 void setDisabled(boolean arg1)
          see disabled
 void setName(java.lang.String arg1)
          see name
 void setReadOnly(boolean arg1)
          see readOnly
 void setRows(long arg1)
          see rows
 void setTabIndex(long arg1)
          see tabIndex
 void setValue(java.lang.String arg1)
          see value
 long tabIndex()
          Index that represents the element's position in the tabbing order.
 java.lang.String type()
          The type of this form control.
 java.lang.String value()
          The current textual content of the multi-line text field.
 
Methods inherited from class org.kde.koala.HTMLElement
addCSSProperty, all, assignOther, children, className, dir, id, innerHTML, innerText, lang, removeCSSProperty, setClassName, setDir, setId, setInnerHTML, setInnerText, setLang, setTitle, title
 
Methods inherited from class org.kde.koala.Element
contentEditable, form, getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, hasAttribute, hasAttributeNS, isHTMLElement, khtmlMalformedPrefix, khtmlMalformedQualifiedName, khtmlValidAttrName, khtmlValidPrefix, khtmlValidQualifiedName, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setContentEditable, style, tagName
 
Methods inherited from class org.kde.koala.Node
addEventListener, appendChild, applyChanges, attributes, childNodes, cloneNode, dispatchEvent, elementId, firstChild, getRect, hasAttributes, hasChildNodes, index, insertBefore, isNull, isSupported, lastChild, localName, namespaceURI, nextSibling, nodeName, nodeType, nodeValue, normalize, op_equals, op_not_equals, ownerDocument, parentNode, prefix, previousSibling, removeChild, removeEventListener, replaceChild, setNodeValue, setPrefix
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HTMLTextAreaElement

protected HTMLTextAreaElement(java.lang.Class dummy)

HTMLTextAreaElement

public HTMLTextAreaElement()

HTMLTextAreaElement

public HTMLTextAreaElement(HTMLTextAreaElement other)

HTMLTextAreaElement

public HTMLTextAreaElement(Node other)
Method Detail

defaultValue

public java.lang.String defaultValue()
Stores the initial control value (i.e., the initial value of value ).


setDefaultValue

public void setDefaultValue(java.lang.String arg1)
see defaultValue


formElement

public HTMLFormElement formElement()
### KDE 4.0: remove.


accessKey

public java.lang.String accessKey()
A single character access key to give access to the form control. See the accesskey attribute definition in HTML 4.0.


setAccessKey

public void setAccessKey(java.lang.String arg1)
see accessKey


cols

public long cols()
Width of control (in characters). See the cols attribute definition in HTML 4.0.


setCols

public void setCols(long arg1)
see cols


disabled

public boolean disabled()
The control is unavailable in this context. See the disabled attribute definition in HTML 4.0.


setDisabled

public void setDisabled(boolean arg1)
see disabled


name

public java.lang.String name()
Form control or object name when submitted with a form. See the name attribute definition in HTML 4.0.


setName

public void setName(java.lang.String arg1)
see name


readOnly

public boolean readOnly()
This control is read-only. See the readonly attribute definition in HTML 4.0.


setReadOnly

public void setReadOnly(boolean arg1)
see readOnly


rows

public long rows()
Number of text rows. See the rows attribute definition in HTML 4.0.


setRows

public void setRows(long arg1)
see rows


tabIndex

public long tabIndex()
Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.0.


setTabIndex

public void setTabIndex(long arg1)
see tabIndex


type

public java.lang.String type()
The type of this form control.


value

public java.lang.String value()
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.


setValue

public void setValue(java.lang.String arg1)
see value


blur

public void blur()
Removes keyboard focus from this element.


focus

public void focus()
Gives keyboard focus to this element.


select

public void select()
Select the contents of the TEXTAREA .