Uses of Class
org.apache.pivot.wtk.TextArea

Packages that use TextArea
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows. 
org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
 

Uses of TextArea in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return TextArea
 TextArea TextArea.Paragraph.getTextArea()
           
 

Methods in org.apache.pivot.wtk with parameters of type TextArea
 void TextAreaListener.editableChanged(TextArea textArea)
          Called when a text area's editable state has changed.
 void TextAreaListener.Adapter.editableChanged(TextArea textArea)
           
 void TextAreaListener.maximumLengthChanged(TextArea textArea, int previousMaximumLength)
          Called when a text area's maximum length has changed.
 void TextAreaListener.Adapter.maximumLengthChanged(TextArea textArea, int previousMaximumLength)
           
 void TextAreaContentListener.paragraphInserted(TextArea textArea, int index)
          Called when a paragraph has been inserted into a text area's paragraph sequence.
 void TextAreaContentListener.Adapter.paragraphInserted(TextArea textArea, int index)
           
 void TextAreaContentListener.paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
          Called when paragraphs have been removed from a text area's paragraph sequence.
 void TextAreaContentListener.Adapter.paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
           
 void TextAreaSelectionListener.selectionChanged(TextArea textArea, int previousSelectionStart, int previousSelectionLength)
          Called when a text area's selection state has changed.
 void TextAreaBindingListener.textBindMappingChanged(TextArea textArea, TextArea.TextBindMapping previousTextBindMapping)
          Called when a text area's text bind mapping has changed.
 void TextAreaBindingListener.Adapter.textBindMappingChanged(TextArea textArea, TextArea.TextBindMapping previousTextBindMapping)
           
 void TextAreaBindingListener.textBindTypeChanged(TextArea textArea, BindType previousTextBindType)
          Called when a text area's text bind type has changed.
 void TextAreaBindingListener.Adapter.textBindTypeChanged(TextArea textArea, BindType previousTextBindType)
           
 void TextAreaContentListener.textChanged(TextArea textArea)
          Called when a text area's text has changed.
 void TextAreaContentListener.Adapter.textChanged(TextArea textArea)
           
 void TextAreaBindingListener.textKeyChanged(TextArea textArea, String previousTextKey)
          Called when a text area's text key has changed.
 void TextAreaBindingListener.Adapter.textKeyChanged(TextArea textArea, String previousTextKey)
           
 

Uses of TextArea in org.apache.pivot.wtk.content
 

Subclasses of TextArea in org.apache.pivot.wtk.content
 class TableViewTextAreaCellRenderer
          Renders cell contents as a string using a text area (which supports line feeds, which the default label-based table view cell renderer does not).
 

Uses of TextArea in org.apache.pivot.wtk.skin
 

Methods in org.apache.pivot.wtk.skin with parameters of type TextArea
 void TextAreaSkin.editableChanged(TextArea textArea)
           
 void TextAreaSkin.maximumLengthChanged(TextArea textArea, int previousMaximumLength)
           
 void TextAreaSkin.paragraphInserted(TextArea textArea, int index)
           
 void TextAreaSkin.paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
           
 void TextAreaSkin.selectionChanged(TextArea textArea, int previousSelectionStart, int previousSelectionLength)
           
 void TextAreaSkin.textChanged(TextArea textArea)