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

Packages that use Document
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.text Contains classes representing a text object model. 
 

Uses of Document in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return Document
 Document TextArea.getDocument()
          Returns the document that backs the text area.
 

Methods in org.apache.pivot.wtk with parameters of type Document
 void TextAreaListener.documentChanged(TextArea textArea, Document previousDocument)
          Called when a text area's document has changed.
 void TextAreaListener.Adapter.documentChanged(TextArea textArea, Document previousDocument)
           
 void TextArea.setDocument(Document document)
          Sets the document that backs the text area.
 

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

Methods in org.apache.pivot.wtk.skin with parameters of type Document
 void TextAreaSkin.documentChanged(TextArea textArea, Document previousDocument)
           
 

Constructors in org.apache.pivot.wtk.skin with parameters of type Document
TextAreaSkin.DocumentView(Document document)
           
 

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

Methods in org.apache.pivot.wtk.text that return Document
 Document PlainTextSerializer.readObject(InputStream inputStream)
           
 Document PlainTextSerializer.readObject(Reader reader)
           
 

Methods in org.apache.pivot.wtk.text with parameters of type Document
 String PlainTextSerializer.getMIMEType(Document document)
           
 void PlainTextSerializer.writeObject(Document document, OutputStream outputStream)
           
 void PlainTextSerializer.writeObject(Document document, Writer writer)
           
 

Constructors in org.apache.pivot.wtk.text with parameters of type Document
Document(Document document, boolean recursive)