Class SaveToPostGIS2PlugIn
- java.lang.Object
-
- org.openjump.core.ui.plugin.datastore.postgis2.SaveToPostGIS2PlugIn
-
- All Implemented Interfaces:
PlugIn
public class SaveToPostGIS2PlugIn extends Object implements PlugIn
This plugin is a write-only driver for a data source backed by a PostGIS database. Note : it uses the same WritableDataStoreDataSource as theAddWritableDataStoreLayerWizard
-
-
Constructor Summary
Constructors Constructor Description SaveToPostGIS2PlugIn()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
execute(PlugInContext context)
This function always returns false.String
getName()
Returns a very brief description of this PlugIn e.g.void
initialize(PlugInContext context)
Initializes the plugin by creating the data source and data source query choosers.
-
-
-
Method Detail
-
initialize
public void initialize(PlugInContext context)
Initializes the plugin by creating the data source and data source query choosers.- Specified by:
initialize
in interfacePlugIn
- Parameters:
context
- context of the PlugIn- See Also:
PlugIn.initialize(com.vividsolutions.jump.workbench.plugin.PlugInContext)
-
execute
public boolean execute(PlugInContext context)
This function always returns false.- Specified by:
execute
in interfacePlugIn
- Parameters:
context
- context of this PlugIn- Returns:
- true if the action completed, false if it was aborted. Used by ThreadedPlugIns to indicate that their #run method needn't be called next.
- See Also:
ThreadedPlugIn
-
getName
public String getName()
Description copied from interface:PlugIn
Returns a very brief description of this PlugIn e.g. for display as a menu item- Specified by:
getName
in interfacePlugIn
- Returns:
- the name of this PlugIn
- See Also:
PlugIn.getName()
-
-