Package org.openjump.core.ui.plugin.file
Class OpenFilePlugIn
- java.lang.Object
-
- com.vividsolutions.jump.workbench.plugin.AbstractPlugIn
-
- org.openjump.core.ui.plugin.AbstractUiPlugIn
-
- org.openjump.core.ui.plugin.AbstractThreadedUiPlugIn
-
- org.openjump.core.ui.plugin.AbstractWizardPlugin
-
- org.openjump.core.ui.plugin.file.OpenFilePlugIn
-
- All Implemented Interfaces:
EnableChecked
,Iconified
,PlugIn
,Recordable
,ShortcutEnabled
,ThreadedPlugIn
,ActionListener
,EventListener
public class OpenFilePlugIn extends AbstractWizardPlugin
Plug-in to open files using a wizard.- Author:
- Paul Austin
-
-
Field Summary
-
Fields inherited from class org.openjump.core.ui.plugin.AbstractUiPlugIn
enableCheck, workbenchContext
-
Fields inherited from class com.vividsolutions.jump.workbench.plugin.AbstractPlugIn
shortcutKeys, shortcutModifiers
-
-
Constructor Summary
Constructors Constructor Description OpenFilePlugIn()
Construct the main Open File plug-in.OpenFilePlugIn(WorkbenchContext workbenchContext, File file)
Construct an Open File for the recent menu to load an individual file.OpenFilePlugIn(WorkbenchContext workbenchContext, File[] files)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
initialize(PlugInContext context)
Initialise the main instance of this plug-in, should not be called for the Recent menu open file plug-ins.-
Methods inherited from class org.openjump.core.ui.plugin.AbstractWizardPlugin
execute, getWizard, run, setWizard
-
Methods inherited from class org.openjump.core.ui.plugin.AbstractUiPlugIn
actionPerformed, getEnableCheck, getIcon, getName, getToolTip, isRollingBackInvalidEdits, reportNothingToUndoYet, setWorkbenchContext
-
Methods inherited from class com.vividsolutions.jump.workbench.plugin.AbstractPlugIn
addParameter, createName, execute, execute, getBooleanParam, getContext, getDoubleParam, getIcon, getIcon, getIntegerParam, getParameter, getParameters, getShortcutKeys, getShortcutKeyStroke, getShortcutModifiers, getStringParam, getWorkbenchContext, isShortcutEnabled, setParameters, setShortcutKeys, setShortcutModifiers, toActionListener, toString
-
-
-
-
Constructor Detail
-
OpenFilePlugIn
public OpenFilePlugIn()
Construct the main Open File plug-in.
-
OpenFilePlugIn
public OpenFilePlugIn(WorkbenchContext workbenchContext, File file)
Construct an Open File for the recent menu to load an individual file.- Parameters:
workbenchContext
- The workbench context.file
- The file to load.
-
OpenFilePlugIn
public OpenFilePlugIn(WorkbenchContext workbenchContext, File[] files)
-
-
Method Detail
-
initialize
public void initialize(PlugInContext context) throws Exception
Initialise the main instance of this plug-in, should not be called for the Recent menu open file plug-ins.- Specified by:
initialize
in interfacePlugIn
- Overrides:
initialize
in classAbstractUiPlugIn
- Parameters:
context
- The plug-in context.- Throws:
Exception
- If there was an error initialising the plug-in.
-
-