Package | Description |
---|---|
com.google.gwt.dom.builder.client |
Classes used to build DOM elements.
|
com.google.gwt.dom.builder.shared |
Classes used to build DOM elements.
|
Modifier and Type | Class and Description |
---|---|
class |
DomTextAreaBuilder
DOM-based implementation of
TextAreaBuilder . |
Modifier and Type | Method and Description |
---|---|
TextAreaBuilder |
DomTextAreaBuilder.accessKey(java.lang.String accessKey) |
TextAreaBuilder |
DomTextAreaBuilder.cols(int cols) |
TextAreaBuilder |
DomTextAreaBuilder.defaultValue(java.lang.String defaultValue) |
TextAreaBuilder |
DomTextAreaBuilder.disabled() |
TextAreaBuilder |
DomTextAreaBuilder.html(SafeHtml html) |
TextAreaBuilder |
DomTextAreaBuilder.name(java.lang.String name) |
TextAreaBuilder |
DomTextAreaBuilder.readOnly() |
TextAreaBuilder |
DomTextAreaBuilder.rows(int rows) |
TextAreaBuilder |
DomElementBuilderBase.startTextArea() |
TextAreaBuilder |
DomTextAreaBuilder.value(java.lang.String value) |
Modifier and Type | Class and Description |
---|---|
class |
HtmlTextAreaBuilder
HTML-based implementation of
TextAreaBuilder . |
Modifier and Type | Method and Description |
---|---|
TextAreaBuilder |
TextAreaBuilder.accessKey(java.lang.String accessKey)
A single character access key to give access to the form control.
|
TextAreaBuilder |
HtmlTextAreaBuilder.accessKey(java.lang.String accessKey) |
TextAreaBuilder |
TextAreaBuilder.cols(int cols)
Width of control (in characters).
|
TextAreaBuilder |
HtmlTextAreaBuilder.cols(int cols) |
abstract TextAreaBuilder |
ElementBuilderFactory.createTextAreaBuilder() |
TextAreaBuilder |
TextAreaBuilder.defaultValue(java.lang.String defaultValue)
Represents the contents of the element.
|
TextAreaBuilder |
HtmlTextAreaBuilder.defaultValue(java.lang.String defaultValue) |
TextAreaBuilder |
TextAreaBuilder.disabled()
Disable this control.
|
TextAreaBuilder |
HtmlTextAreaBuilder.disabled() |
TextAreaBuilder |
HtmlTextAreaBuilder.html(SafeHtml html) |
TextAreaBuilder |
TextAreaBuilder.name(java.lang.String name)
Form control or object name when submitted with a form.
|
TextAreaBuilder |
HtmlTextAreaBuilder.name(java.lang.String name) |
TextAreaBuilder |
TextAreaBuilder.readOnly()
Make control is read-only.
|
TextAreaBuilder |
HtmlTextAreaBuilder.readOnly() |
TextAreaBuilder |
TextAreaBuilder.rows(int rows)
Number of text rows.
|
TextAreaBuilder |
HtmlTextAreaBuilder.rows(int rows) |
TextAreaBuilder |
HtmlElementBuilderBase.startTextArea() |
TextAreaBuilder |
ElementBuilderBase.startTextArea()
Append a textarea element.
|
TextAreaBuilder |
TextAreaBuilder.value(java.lang.String value)
Represents the current contents of the corresponding form control, in an
interactive user agent.
|
TextAreaBuilder |
HtmlTextAreaBuilder.value(java.lang.String value) |