Uses of Interface
org.bs.mdi.Window

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

Uses of Window in org.bs.mdi
 

Subinterfaces of Window in org.bs.mdi
 interface DocumentWindow
          An interface for MDI subwindows which display the document's view to the user.
 interface MainWindow
          An interface for main window implementations.
 

Methods in org.bs.mdi with parameters of type Window
 void MainWindow.showMessage(int type, Window window, String message)
          Displays a message box.
 int MainWindow.showDialog(int type, Window window, String message, String[] choices, int defaultChoice)
          Displays a dialog box.
 

Uses of Window in org.bs.mdi.swing
 

Subinterfaces of Window 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 Window
 class SwingMainWindow
          An implementation of a MainWindow using Swing technology.
 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 with parameters of type Window
 void SwingMainWindow.showMessage(int type, Window window, String message)
           
 int SwingMainWindow.showDialog(int type, Window window, String message, String[] choices, int defaultChoice)