Uses of Interface
org.bs.mdi.View

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

Uses of View in org.bs.mdi
 

Subinterfaces of View in org.bs.mdi
 interface RootView
          An interface for the graphical representation of a document's information.
 

Methods in org.bs.mdi that return View
 View View.getParentView()
          Gets the parent View object, or null if there is no parent object (i.e. this is probably a RootView object).
 View View.getChild(int index)
          Gets the child element at the specified index.
 

Methods in org.bs.mdi with parameters of type View
 void View.addChild(View child)
          Adds a child element.
 void View.removeChild(View child)
          Removes a child element.
 void CompositeAction.applyTo(View view)
           
 void CompositeAction.undoFrom(View view)
           
abstract  void Action.applyTo(View view)
          Applies this action to a View object.
abstract  void Action.undoFrom(View view)
          Undoes this Action from a View object.
 

Uses of View in org.bs.mdi.swing
 

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

Methods in org.bs.mdi.swing that return View
 View SwingRootView.getParentView()
           
 View SwingRootView.getChild(int index)
           
 View SwingView.getParentView()
           
 View SwingView.getChild(int index)
           
 

Methods in org.bs.mdi.swing with parameters of type View
 void SwingRootView.addChild(View child)
           
 void SwingRootView.removeChild(View child)
           
 void SwingView.addChild(View child)
           
 void SwingView.removeChild(View child)
           
 

Constructors in org.bs.mdi.swing with parameters of type View
SwingView(Data data, View parent)
          Creates a new view.
SwingView(Data data, View parent, Component wrappedComponent)
          Creates a new view, optionally wrapping a standard component.