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

Packages that use TextArea.Paragraph
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. 
 

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

Methods in org.apache.pivot.wtk that return TextArea.Paragraph
 TextArea.Paragraph TextArea.ParagraphSequence.get(int index)
           
 TextArea.Paragraph TextArea.ParagraphSequence.update(int index, TextArea.Paragraph paragraph)
           
 

Methods in org.apache.pivot.wtk that return types with arguments of type TextArea.Paragraph
 Iterator<TextArea.Paragraph> TextArea.ParagraphSequence.iterator()
           
 Sequence<TextArea.Paragraph> TextArea.ParagraphSequence.remove(int index, int count)
           
 

Methods in org.apache.pivot.wtk with parameters of type TextArea.Paragraph
 int TextArea.ParagraphSequence.add(TextArea.Paragraph paragraph)
           
 int TextArea.ParagraphSequence.indexOf(TextArea.Paragraph paragraph)
           
 void TextArea.ParagraphSequence.insert(TextArea.Paragraph paragraph, int index)
           
 int TextArea.ParagraphSequence.remove(TextArea.Paragraph paragraph)
           
 void TextArea.ParagraphListener.textInserted(TextArea.Paragraph paragraph, int index, int count)
          Called when text has been inserted into a paragraph.
 void TextArea.ParagraphListener.Adapter.textInserted(TextArea.Paragraph paragraph, int index, int count)
           
 void TextArea.ParagraphListener.textRemoved(TextArea.Paragraph paragraph, int index, int count)
          Called when characters have been removed from a paragraph.
 void TextArea.ParagraphListener.Adapter.textRemoved(TextArea.Paragraph paragraph, int index, int count)
           
 TextArea.Paragraph TextArea.ParagraphSequence.update(int index, TextArea.Paragraph paragraph)
           
 

Method parameters in org.apache.pivot.wtk with type arguments of type TextArea.Paragraph
 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)
           
 

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

Methods in org.apache.pivot.wtk.skin that return TextArea.Paragraph
 TextArea.Paragraph TextAreaSkinParagraphView.getParagraph()
           
 

Methods in org.apache.pivot.wtk.skin with parameters of type TextArea.Paragraph
 void TextAreaSkinParagraphView.textInserted(TextArea.Paragraph paragraphArgument, int index, int count)
           
 void TextAreaSkinParagraphView.textRemoved(TextArea.Paragraph paragraphArgument, int index, int count)
           
 

Method parameters in org.apache.pivot.wtk.skin with type arguments of type TextArea.Paragraph
 void TextAreaSkin.paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
           
 

Constructors in org.apache.pivot.wtk.skin with parameters of type TextArea.Paragraph
TextAreaSkinParagraphView(TextAreaSkin textAreaSkin, TextArea.Paragraph paragraph)