Uses of Class
org.apache.pivot.wtk.text.TextNode

Packages that use TextNode
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
org.apache.pivot.wtk.text Contains classes representing a text object model. 
 

Uses of TextNode in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return TextNode
 TextNode TextInput.getTextNode()
          Returns the text node that backs the text input's content.
 

Methods in org.apache.pivot.wtk with parameters of type TextNode
 void TextInput.setTextNode(TextNode textNode)
          Sets the text node that backs the text input's content.
 void TextInputListener.textNodeChanged(TextInput textInput, TextNode previousTextNode)
          Called when a text input's text node has changed.
 void TextInputListener.Adapter.textNodeChanged(TextInput textInput, TextNode previousTextNode)
           
 

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

Methods in org.apache.pivot.wtk.skin with parameters of type TextNode
 void TextAreaSkin.TextNodeView.charactersInserted(TextNode textNode, int index, int count)
           
 void TextAreaSkin.TextNodeView.charactersRemoved(TextNode textNode, int index, String characters)
           
 

Constructors in org.apache.pivot.wtk.skin with parameters of type TextNode
TextAreaSkin.TextNodeView(TextNode textNode)
           
TextAreaSkin.TextNodeView(TextNode textNode, int start)
           
 

Uses of TextNode in org.apache.pivot.wtk.skin.terra
 

Methods in org.apache.pivot.wtk.skin.terra with parameters of type TextNode
 void TerraTextInputSkin.textNodeChanged(TextInput textInput, TextNode previousTextNode)
           
 

Uses of TextNode in org.apache.pivot.wtk.text
 

Methods in org.apache.pivot.wtk.text with parameters of type TextNode
 void TextNodeListener.charactersInserted(TextNode textNode, int index, int count)
          Called when characters have been inserted into a text node.
 void TextNodeListener.charactersRemoved(TextNode textNode, int index, String characters)
          Called when characters have been removed from a text node.
 

Constructors in org.apache.pivot.wtk.text with parameters of type TextNode
TextNode(TextNode textNode)