Package mgui.io.domestic.shapes
Class SurfaceFileLoader
java.lang.Object
mgui.io.FileLoader
mgui.io.domestic.shapes.InterfaceShapeLoader
mgui.io.domestic.shapes.SurfaceFileLoader
- All Implemented Interfaces:
InterfaceIO,IconObject
- Direct Known Subclasses:
CaretSurfaceLoader,DuffSurfaceLoader,FreesurferSurfaceLoader,FSLSurfaceLoader,GiftiSurfaceLoader,Mesh3DLoader,MincSurfaceLoader,WavefrontSurfaceLoader
public abstract class SurfaceFileLoader extends InterfaceShapeLoader
Abstract loader class for all loaders which load Mesh3DInt 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 SurfaceFileLoader() -
Method Summary
Modifier and Type Method Description java.lang.StringgetFailureMessage()Returns a message to indicate that loading failed.javax.swing.IcongetObjectIcon()Returns theIconassociated with this object.java.lang.StringgetSuccessMessage()Returns a message to indicate that loading was successful.java.util.ArrayList<java.lang.Class<?>>getSupportedObjects()Returns a list of classes for objects which are supported by this I/O interfacejava.lang.StringgetTitle()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.InterfaceShapeloadShape(ShapeInputOptions options, ProgressUpdater progress_bar)Loads a shape with the givenoptions.Mesh3DIntloadSurface()Loads a single surface from the appropriate source.Mesh3DIntloadSurface(ProgressUpdater progress_bar)Loads a single surface from the appropriate source.abstract Mesh3DIntloadSurface(ProgressUpdater progress_bar, InterfaceIOOptions options)Loads a single surface from the appropriate source.java.util.ArrayList<Mesh3DInt>loadSurfaces()Loads a set of surfaces from the appropriate source.Methods inherited from class mgui.io.FileLoader
getComplementIOType, getFile, getIOType, getOptions, getProgressMessage, 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
-
SurfaceFileLoader
public SurfaceFileLoader()
-
-
Method Details
-
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.
- Overrides:
loadin classInterfaceShapeLoaderprogress_bar- An optional progress updater. Can benull.- Returns:
-
getSuccessMessage
public java.lang.String getSuccessMessage()Description copied from class:FileLoaderReturns a message to indicate that loading was successful.- Specified by:
getSuccessMessagein interfaceInterfaceIO- Overrides:
getSuccessMessagein classFileLoader- Returns:
- Progress message
-
getFailureMessage
public java.lang.String getFailureMessage()Description copied from class:FileLoaderReturns a message to indicate that loading failed.- Overrides:
getFailureMessagein classFileLoader- Returns:
- Progress message
-
getTitle
public java.lang.String getTitle()- Specified by:
getTitlein interfaceInterfaceIO- Overrides:
getTitlein classFileLoader
-
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 classInterfaceShapeLoader- Parameters:
progress_bar- An optional progress updater. Can benull.options- Options defining the loading process- Returns:
- Throws:
java.io.IOException
-
loadShape
public InterfaceShape loadShape(ShapeInputOptions options, ProgressUpdater progress_bar) throws java.io.IOExceptionDescription copied from class:InterfaceShapeLoaderLoads a shape with the givenoptions.- Specified by:
loadShapein classInterfaceShapeLoader- Returns:
- Throws:
java.io.IOException
-
loadSurface
Loads a single surface from the appropriate source. Returns a Mesh3DInt object if load was successful, or null otherwise. This method should also set the file loader and reference URL for the object.- Returns:
- Throws:
java.io.IOException
-
loadSurface
Loads a single surface from the appropriate source. Returns a Mesh3DInt object if load was successful, or null otherwise. This method should also set the file loader and reference URL for the object.- Returns:
- Mesh3DInt mesh representing the surface being loaded
- Throws:
java.io.IOException
-
loadSurface
public abstract Mesh3DInt loadSurface(ProgressUpdater progress_bar, InterfaceIOOptions options) throws java.io.IOExceptionLoads a single surface from the appropriate source. Returns a Mesh3DInt object if load was successful, or null otherwise. This method should also set the file loader and reference URL for the object.- Returns:
- Mesh3DInt mesh representing the surface being loaded
- Throws:
java.io.IOException
-
loadSurfaces
Loads a set of surfaces from the appropriate source. Returns an ArrayList of Mesh3DInt objects if load was successful, or null otherwise. This method should also set the file loader and reference URL for the object.- Returns:
- Mesh3DInt mesh representing the surface being loaded
- Throws:
java.io.IOException
-
getObjectIcon
public javax.swing.Icon getObjectIcon()Description copied from interface:IconObjectReturns theIconassociated with this object.- Specified by:
getObjectIconin interfaceIconObject- Overrides:
getObjectIconin classFileLoader- Returns:
-
getSupportedObjects
public java.util.ArrayList<java.lang.Class<?>> getSupportedObjects()Description copied from interface:InterfaceIOReturns a list of classes for objects which are supported by this I/O interface- Specified by:
getSupportedObjectsin interfaceInterfaceIO- Overrides:
getSupportedObjectsin classFileLoader- Returns:
-