Uses of Class
org.bs.mdi.Data

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

Uses of Data in org.bs.mdi
 

Subclasses of Data in org.bs.mdi
 class RootData
          Represents the information contained in a document.
 

Methods in org.bs.mdi that return Data
 Data Data.getParentData()
          Gets the parent Data object, or null if there is no parent object (i.e. this is probably a RootData object).
 Data Data.getChild(int index)
          Gets the child element at the specified index.
 Data View.getData()
          Returns the Data object associated with this view.
 

Methods in org.bs.mdi with parameters of type Data
 void UndoManager.add(Action action, Data data)
          Tells the UndoManager that an action has occurred.
 void Data.addChild(Data child)
          Adds a child element.
 void Data.removeChild(Data child)
          Removes a child element.
 void View.setData(Data data)
          Associates this View with the given Data object.
 void CompositeAction.applyTo(Data data)
           
 void CompositeAction.undoFrom(Data data)
           
abstract  void Action.applyTo(Data data)
          Applies this action to a Data object.
abstract  void Action.undoFrom(Data data)
          Undoes this Action from a Data object.
 

Constructors in org.bs.mdi with parameters of type Data
Data(Document document, Data parent)
          Creates a new Data object.
 

Uses of Data in org.bs.mdi.swing
 

Methods in org.bs.mdi.swing that return Data
 Data SwingRootView.getData()
           
 Data SwingView.getData()
           
 

Methods in org.bs.mdi.swing with parameters of type Data
 void SwingRootView.setData(Data data)
           
 void SwingView.setData(Data data)
           
 

Constructors in org.bs.mdi.swing with parameters of type Data
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.