Uses of Interface
org.bs.mdi.ActionObserver

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

Uses of ActionObserver in org.bs.mdi
 

Subinterfaces of ActionObserver 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 ActionObserver
 class Data
          Represents a piece of information in a document.
 class RootData
          Represents the information contained in a document.
 

Methods in org.bs.mdi with parameters of type ActionObserver
 void Data.addObserver(ActionObserver observer)
           
 void Data.removeObserver(ActionObserver observer)
           
 boolean Data.isObserver(ActionObserver observer)
           
 void ActionObservable.addObserver(ActionObserver observer)
          Registers this observer so that it will receive notification messages.
 void ActionObservable.removeObserver(ActionObserver observer)
          Un-registers this observer so that it will not receive notifications any longer.
 boolean ActionObservable.isObserver(ActionObserver observer)
          Determines if the given observer is currently observing this object.
 

Uses of ActionObserver in org.bs.mdi.swing
 

Classes in org.bs.mdi.swing that implement ActionObserver
 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 ActionObserver
 void SwingRootView.addObserver(ActionObserver observer)
           
 void SwingRootView.removeObserver(ActionObserver observer)
           
 boolean SwingRootView.isObserver(ActionObserver observer)
           
 void SwingView.addObserver(ActionObserver observer)
           
 void SwingView.removeObserver(ActionObserver observer)
           
 boolean SwingView.isObserver(ActionObserver observer)