Uses of Class
org.bs.mdi.Document

Packages that use Document
org.bs.mdi   
org.bs.mdi.swing   
 

Uses of Document in org.bs.mdi
 

Methods in org.bs.mdi that return Document
 Document Data.getDocument()
          Returns the document associated with this Data object.
 Document DocumentWindow.getDocument()
          Returns the document which this view is associated with.
 Document View.getDocument()
          Returns the document which this view is assigned to.
static Document Document.createNew()
          Creates a new document.
static Document Document.open(String filename)
          Opens an existing document.
 Document Application.newDocument()
          Creates a new document and makes its view (window) visible.
 Document Application.openDocument()
          Displays a "Open File"-Dialog and tries to open the selected file.
 Document Application.openDocument(String filename)
          Tries to open the given file.
static Document[] Application.getDocuments()
          Returns an array of currently opened documents.
static Document Application.getDocument(int index)
          Gets the document at the specified index.
static Document Application.getCurrentDocument()
          Returns the document which belongs to the current window.
 

Methods in org.bs.mdi with parameters of type Document
 void Data.setDocument(Document document)
          Associates this Data object with the given document.
 

Constructors in org.bs.mdi with parameters of type Document
UndoManager(Document document)
          Creates a new UndoManager.
UndoManager(Document document, int limit)
          Creates a new UndoManager.
Data(Document document)
          Creates a new Data object which has no parent element.
Data(Document document, Data parent)
          Creates a new Data object.
 

Uses of Document in org.bs.mdi.swing
 

Methods in org.bs.mdi.swing that return Document
 Document TraditionalDocumentWindow.getDocument()
           
 Document TabDocumentWindow.getDocument()
           
 Document SwingRootView.getDocument()
           
 Document SwingView.getDocument()