GWT 2.6.0-rc4

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 HtmlTextAreaBuilder.accessKey(java.lang.String accessKey)
           
 TextAreaBuilder TextAreaBuilder.accessKey(java.lang.String accessKey)
          A single character access key to give access to the form control.
 TextAreaBuilder HtmlTextAreaBuilder.cols(int cols)
           
 TextAreaBuilder TextAreaBuilder.cols(int cols)
          Width of control (in characters).
abstract  TextAreaBuilder ElementBuilderFactory.createTextAreaBuilder()
           
 TextAreaBuilder HtmlTextAreaBuilder.defaultValue(java.lang.String defaultValue)
           
 TextAreaBuilder TextAreaBuilder.defaultValue(java.lang.String defaultValue)
          Represents the contents of the element.
 TextAreaBuilder HtmlTextAreaBuilder.disabled()
           
 TextAreaBuilder TextAreaBuilder.disabled()
          Disable this control.
 TextAreaBuilder HtmlTextAreaBuilder.html(SafeHtml html)
           
 TextAreaBuilder HtmlTextAreaBuilder.name(java.lang.String name)
           
 TextAreaBuilder TextAreaBuilder.name(java.lang.String name)
          Form control or object name when submitted with a form.
 TextAreaBuilder HtmlTextAreaBuilder.readOnly()
           
 TextAreaBuilder TextAreaBuilder.readOnly()
          Make control is read-only.
 TextAreaBuilder HtmlTextAreaBuilder.rows(int rows)
           
 TextAreaBuilder TextAreaBuilder.rows(int rows)
          Number of text rows.
 TextAreaBuilder ElementBuilderBase.startTextArea()
          Append a textarea element.
 TextAreaBuilder HtmlElementBuilderBase.startTextArea()
           
 TextAreaBuilder HtmlTextAreaBuilder.value(java.lang.String value)
           
 TextAreaBuilder TextAreaBuilder.value(java.lang.String value)
          Represents the current contents of the corresponding form control, in an interactive user agent.
 


GWT 2.6.0-rc4