Uses of Class
org.bs.mdi.RootData

Packages that use RootData
org.bs.mdi   
 

Uses of RootData in org.bs.mdi
 

Fields in org.bs.mdi declared as RootData
protected  RootData DataPageable.data
           
 

Methods in org.bs.mdi that return RootData
 RootData FileLoader.load(String filename)
          Loads the data from disk.
 RootData FileIOManager.load(String filename, FileLoader loader)
          Tries to load data from disk using the specified loader module.
 RootData FileIOManager.load(String filename)
          Tries to load data from disk.
 RootData DataPageable.getData()
          Returns the RootData which is associated with this DataPageable.
 RootData Document.getData()
          Returns the data associated with this document.
static RootData Application.getCurrentData()
          Returns the data which belongs to the current window.
abstract  RootData Application.createRootData()
          Creates and returns a new RootData instance.
 

Methods in org.bs.mdi with parameters of type RootData
 void FileSaver.save(RootData data, String filename)
          Saves the document data to disk.
 void FileIOManager.save(RootData data, String filename, FileSaver saver)
          Tries to save a document to disk using the specified saver module.
 void FileIOManager.save(RootData data, String filename)
          Tries to save a document to disk.
 void FileIOManager.export(RootData data, FileExporter exporter)
          Exports the data using the specified exporter module.
 void FileExporter.export(RootData data)
          Exports the data to a non-loadable format.
 void DataPageable.setData(RootData data)
          Associates the given RootData with this DataPageable.
 

Constructors in org.bs.mdi with parameters of type RootData
DataPageable.DataPrintable(RootData data, PageFormat format, int page)