Uses of Interface
org.bs.mdi.DocumentWindow

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

Uses of DocumentWindow in org.bs.mdi
 

Fields in org.bs.mdi declared as DocumentWindow
protected static DocumentWindow Application.currentWindow
           
 

Methods in org.bs.mdi that return DocumentWindow
 DocumentWindow RootView.getWindow()
          Returns the window which is displaying this view.
 DocumentWindow MainWindow.createDocumentWindow()
          Creates a new document window.
static DocumentWindow Application.getCurrentWindow()
          Returns the currently active window.
 

Methods in org.bs.mdi with parameters of type DocumentWindow
 void RootView.windowChanged(DocumentWindow window)
          Called from within the framework to indicate that the view's window has changed.
static void Application.selectWindow(DocumentWindow window)
          Activates a window programmatically.
protected  void Application.currentWindowChanged(DocumentWindow newWindow)
          Called when another document window is activated (receives the focus).
 

Uses of DocumentWindow in org.bs.mdi.swing
 

Subinterfaces of DocumentWindow in org.bs.mdi.swing
 interface SwingDocumentWindow
          Interface for all document window implementations in org.bs.mdi.swing.
 

Classes in org.bs.mdi.swing that implement DocumentWindow
 class TabDocumentWindow
          An implementation of a DocumentWindow using Tabs.
 class TraditionalDocumentWindow
          An implementation of a DocumentWindow using Swing's JInternalFrames.
 

Methods in org.bs.mdi.swing that return DocumentWindow
 DocumentWindow TraditionalMDIWindowManager.createDocumentWindow()
           
 DocumentWindow TabMDIWindowManager.createDocumentWindow()
           
 DocumentWindow MDIWindowManager.createDocumentWindow()
          Creates a new document subwindow.
 DocumentWindow SwingRootView.getWindow()
           
 DocumentWindow SwingMainWindow.createDocumentWindow()
           
 

Methods in org.bs.mdi.swing with parameters of type DocumentWindow
 void TraditionalMDIWindowManager.addWindow(JComponent desktop, DocumentWindow window)
           
 void TraditionalMDIWindowManager.windowRemoved(JComponent desktop, DocumentWindow window)
           
 void TraditionalMDIWindowManager.windowSelected(JComponent desktop, DocumentWindow window)
           
 void TabMDIWindowManager.addWindow(JComponent desktop, DocumentWindow window)
           
 void TabMDIWindowManager.windowRemoved(JComponent desktop, DocumentWindow window)
           
 void TabMDIWindowManager.windowSelected(JComponent desktop, DocumentWindow window)
           
 void MDIWindowManager.addWindow(JComponent desktop, DocumentWindow window)
          Adds the specified window to the given desktop area.
 void MDIWindowManager.windowRemoved(JComponent desktop, DocumentWindow window)
          Called from within the framework to indicate that a document subwindow has been closed.
 void MDIWindowManager.windowSelected(JComponent desktop, DocumentWindow window)
          Called from within the framework to indicate that another document window has been selected.
 void SwingRootView.windowChanged(DocumentWindow window)
           
 

Constructors in org.bs.mdi.swing with parameters of type DocumentWindow
SwingWindowCommand(DocumentWindow window)
          Creates a new SwingWindowCommand which can activate the given window.