Package org.openjump.core.ui.io.file
Class AbstractFileLayerSaver
- java.lang.Object
-
- org.openjump.core.ui.io.file.AbstractFileLayerSaver
-
- All Implemented Interfaces:
FileLayerSaver
- Direct Known Subclasses:
DataSourceFileLayerSaver
public abstract class AbstractFileLayerSaver extends Object implements FileLayerSaver
-
-
Field Summary
-
Fields inherited from interface org.openjump.core.ui.io.file.FileLayerSaver
KEY
-
-
Constructor Summary
Constructors Constructor Description AbstractFileLayerSaver(String description, List<String> extensions)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Get the descriptive name of the file format (e.g.Collection<String>
getFileExtensions()
Get the list of file extensions supported by the plug-in.List<Option>
getOptionMetadata()
Get the list of Options supported by the plug-in.abstract boolean
write(TaskMonitor monitor, URI uri, Map<String,Object> options)
Write the file specified by the URI with the map of option values.
-
-
-
Method Detail
-
getFileExtensions
public Collection<String> getFileExtensions()
Description copied from interface:FileLayerSaver
Get the list of file extensions supported by the plug-in.- Specified by:
getFileExtensions
in interfaceFileLayerSaver
- Returns:
- The list of file extensions.
-
getDescription
public String getDescription()
Description copied from interface:FileLayerSaver
Get the descriptive name of the file format (e.g. ESRI Shapefile).- Specified by:
getDescription
in interfaceFileLayerSaver
- Returns:
- The file format name.
-
write
public abstract boolean write(TaskMonitor monitor, URI uri, Map<String,Object> options) throws Exception
Description copied from interface:FileLayerSaver
Write the file specified by the URI with the map of option values.- Specified by:
write
in interfaceFileLayerSaver
- Parameters:
monitor
- The TaskMonitor.uri
- The URI to the file to load.options
- The map of options.- Returns:
- True if the file could be loaded false otherwise.
- Throws:
Exception
- if an Exception occurred
-
getOptionMetadata
public List<Option> getOptionMetadata()
Description copied from interface:FileLayerSaver
Get the list of Options supported by the plug-in.- Specified by:
getOptionMetadata
in interfaceFileLayerSaver
- Returns:
- The list of Options.
-
-