Package mgui.io.domestic.shapes
Class InterfaceShapeLoader
java.lang.Object
mgui.io.FileLoader
mgui.io.domestic.shapes.InterfaceShapeLoader
- All Implemented Interfaces:
InterfaceIO,IconObject
- Direct Known Subclasses:
PointSet2DLoader,ShapeXmlLoader,SurfaceFileLoader,VolumeFileLoader
public abstract class InterfaceShapeLoader extends FileLoader
Abstract loader class for all loaders which load InterfaceShape objects.
- Since:
- 1.0
- Version:
- 1.0
- Author:
- Andrew Reid
-
Field Summary
Fields inherited from class mgui.io.FileLoader
dataFile, dataURL, options -
Constructor Summary
Constructors Constructor Description InterfaceShapeLoader() -
Method Summary
Modifier and Type Method Description booleanload(InterfaceIOOptions options, ProgressUpdater progress_bar)Loads data from the set of files or URLs specified byoptions.java.lang.ObjectloadObject(ProgressUpdater progress_bar, InterfaceIOOptions options)Loads data into an instance of the object corresponding to this loader.abstract InterfaceShapeloadShape(ShapeInputOptions options, ProgressUpdater progress_bar)Loads a shape with the givenoptions.Methods inherited from class mgui.io.FileLoader
getComplementIOType, getFailureMessage, getFile, getIOType, getObjectIcon, getOptions, getProgressMessage, getSuccessMessage, getSupportedObjects, getTitle, getWriterComplement, load, load, loadObject, loadObject, loadObject, setFile, setOptions, setURL, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
InterfaceShapeLoader
public InterfaceShapeLoader()
-
-
Method Details
-
loadObject
public java.lang.Object loadObject(ProgressUpdater progress_bar, InterfaceIOOptions options) throws java.io.IOExceptionDescription copied from class:FileLoaderLoads data into an instance of the object corresponding to this loader. If loaded object is of typePersistentObject, this method should also set the file loader and reference URL for the object. TODO: make generic?- Overrides:
loadObjectin classFileLoader- Parameters:
progress_bar- An optional progress updater. Can benull.options- Options defining the loading process- Returns:
- Throws:
java.io.IOException
-
load
Description copied from class:FileLoaderLoads data from the set of files or URLs specified byoptions. Loading is controlled by the specifications ofoptions. If loaded object is of typePersistentObject, this method should also set the file loader and reference URL for the object.This method should also set the URL reference and writer and loader attributes to match this one and its complement.
- Specified by:
loadin classFileLoaderprogress_bar- An optional progress updater. Can benull.- Returns:
-
loadShape
public abstract InterfaceShape loadShape(ShapeInputOptions options, ProgressUpdater progress_bar) throws java.io.IOExceptionLoads a shape with the givenoptions.- Parameters:
options-progress_bar-- Returns:
- Throws:
java.io.IOException
-