Uses of Interface
org.bs.mdi.RootView

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

Uses of RootView in org.bs.mdi
 

Methods in org.bs.mdi that return RootView
 RootView DocumentWindow.getView()
          Returns the window which this view is assigned to.
 RootView Document.getView(int index)
          Gets the specified view.
 RootView[] Document.getViews()
          Gets an array containing all root views.
static RootView Application.getCurrentView()
          Returns the view which belongs to the current window.
abstract  RootView Application.createRootView()
          Creates and returns a new RootView instance.
 

Methods in org.bs.mdi with parameters of type RootView
 void DocumentWindow.setView(RootView view)
          Assigns the given view to this window.
 void Document.addView(RootView view)
          Associates the specified view with this document.
 void Document.removeView(RootView view)
          Removes the specified view from this document.
 

Uses of RootView in org.bs.mdi.swing
 

Classes in org.bs.mdi.swing that implement RootView
 class SwingRootView
          An implementation of a RootView using Swing technology.
 

Fields in org.bs.mdi.swing declared as RootView
protected  RootView TraditionalDocumentWindow.view
           
protected  RootView TabDocumentWindow.view
           
 

Methods in org.bs.mdi.swing that return RootView
 RootView TraditionalDocumentWindow.getView()
           
 RootView TabDocumentWindow.getView()
           
 

Methods in org.bs.mdi.swing with parameters of type RootView
 void TraditionalDocumentWindow.setView(RootView view)
           
 void TabDocumentWindow.setView(RootView view)