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 TextPane.getDocument()
          Returns the document that backs the text pane.
 

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

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

Methods in org.apache.pivot.wtk.skin with parameters of type Document
 void TextPaneSkin.documentChanged(TextPane textPane, Document previousDocument)
           
 

Constructors in org.apache.pivot.wtk.skin with parameters of type Document
TextPaneSkinDocumentView(TextPaneSkin textPaneSkin, Document document)
           
 

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

Methods in org.apache.pivot.wtk.text that return Document
 Document Document.duplicate(boolean recursive)
           
 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)