Uses of Interface
org.jhotdraw.util.StorageFormat

Packages that use StorageFormat
org.jhotdraw.util   
 

Uses of StorageFormat in org.jhotdraw.util
 

Classes in org.jhotdraw.util that implement StorageFormat
 class SerializationStorageFormat
          A SerializationStorageFormat is a straight-forward file format to store and restore Drawings.
 class StandardStorageFormat
          A StandardStorageFormat is an internal file format to store and restore Drawings.
 

Methods in org.jhotdraw.util that return StorageFormat
 StorageFormat StorageFormatManager.findStorageFormat(java.io.File file)
          Find a StorageFormat that can be used according to a file object to store a Drawing in a file or restore it from a file respectively.
 StorageFormat StorageFormatManager.findStorageFormat(javax.swing.filechooser.FileFilter findFileFilter)
          Find a StorageFormat that can be used according to a FileFilter to store a Drawing in a file or restore it from a file respectively.
 StorageFormat StorageFormatManager.getDefaultStorageFormat()
          Return the StorageFormat which is used as selected file format in a javax.swing.JFileChooser
 

Methods in org.jhotdraw.util with parameters of type StorageFormat
 void StorageFormatManager.addStorageFormat(StorageFormat newStorageFormat)
          Add a StorageFormat that should be supported by this StorageFormatManager.
 boolean StorageFormatManager.containsStorageFormat(StorageFormat checkStorageFormat)
          Test, whether a StorageFormat is supported by this StorageFormat
 void StorageFormatManager.removeStorageFormat(StorageFormat oldStorageFormat)
          Remove a StorageFormat that should no longer be supported by this StorageFormatManager.
 void StorageFormatManager.setDefaultStorageFormat(StorageFormat newDefaultStorageFormat)
          Set a StorageFormat as the default storage format which is selected in a javax.swing.JFileChooser.