GWT 2.7.0

Uses of Interface
com.google.gwt.dom.builder.shared.TextAreaBuilder

Packages that use TextAreaBuilder
com.google.gwt.dom.builder.client Classes used to build DOM elements. 
com.google.gwt.dom.builder.shared Classes used to build DOM elements. 
 

Uses of TextAreaBuilder in com.google.gwt.dom.builder.client
 

Classes in com.google.gwt.dom.builder.client that implement TextAreaBuilder
 class DomTextAreaBuilder
          DOM-based implementation of TextAreaBuilder.
 

Methods in com.google.gwt.dom.builder.client that return TextAreaBuilder
 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)
           
 

Uses of TextAreaBuilder in com.google.gwt.dom.builder.shared
 

Classes in com.google.gwt.dom.builder.shared that implement TextAreaBuilder
 class HtmlTextAreaBuilder
          HTML-based implementation of TextAreaBuilder.
 

Methods in com.google.gwt.dom.builder.shared that return TextAreaBuilder
 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)
           
 


GWT 2.7.0