Uses of Interface
org.bs.mdi.ActionObservable

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

Uses of ActionObservable in org.bs.mdi
 

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

Classes in org.bs.mdi that implement ActionObservable
 class Data
          Represents a piece of information in a document.
 class RootData
          Represents the information contained in a document.
 

Methods in org.bs.mdi that return ActionObservable
 ActionObservable Action.getSource()
          Returns the source of this action.
 

Methods in org.bs.mdi with parameters of type ActionObservable
 void Data.actionPerformed(ActionObservable observable, Action action)
           
 void Data.actionUndone(ActionObservable observable, Action action)
           
 void ActionObserver.actionPerformed(ActionObservable source, Action action)
          Called from the ActionObservable when an action has been performed or redone.
 void ActionObserver.actionUndone(ActionObservable source, Action action)
          Called from the ActionObservable when an action has been undone.
 

Constructors in org.bs.mdi with parameters of type ActionObservable
CompositeAction(ActionObservable observable)
          Creates a new CompositeAction.
CompositeAction(ActionObservable observable, String overrideName)
          Creates a new CompositeAction and overrides its name.
Action(ActionObservable source)
          Action is an abstract class and cannot be instantiated.
Action(ActionObservable source, boolean retarded)
          Action is an abstract class and cannot be instantiated.
 

Uses of ActionObservable in org.bs.mdi.swing
 

Classes in org.bs.mdi.swing that implement ActionObservable
 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 with parameters of type ActionObservable
 void SwingRootView.actionPerformed(ActionObservable observable, Action action)
           
 void SwingRootView.actionUndone(ActionObservable observable, Action action)
           
 void SwingView.actionPerformed(ActionObservable observable, Action action)
           
 void SwingView.actionUndone(ActionObservable observable, Action action)