Package org.openjump.core.ui.plugin
Class AbstractUiPlugIn
- java.lang.Object
-
- com.vividsolutions.jump.workbench.plugin.AbstractPlugIn
-
- org.openjump.core.ui.plugin.AbstractUiPlugIn
-
- All Implemented Interfaces:
EnableChecked
,Iconified
,PlugIn
,Recordable
,ShortcutEnabled
,ActionListener
,EventListener
- Direct Known Subclasses:
AbstractThreadedUiPlugIn
,AddImageLayerPlugIn
,AutoAssignAttributePlugIn
,CreateGridPlugIn
,FileDragDropPlugin
,GenerateRandomNumberPlugIn
,GenerateRandomStringPlugIn
,GenerateUniqueRandomIdPlugIn
,MosaicInternalFramesPlugIn
,OpenRecentPlugIn
,SynchronizationPlugIn
public abstract class AbstractUiPlugIn extends AbstractPlugIn implements ActionListener
Default implementation of PlugIn, with useful functions for auto-generating a name, converting a PlugIn into an ActionListener (for use with JButtons, for example), and supporting undo.
-
-
Field Summary
Fields Modifier and Type Field Description protected EnableCheck
enableCheck
protected WorkbenchContext
workbenchContext
The workbench context.-
Fields inherited from class com.vividsolutions.jump.workbench.plugin.AbstractPlugIn
shortcutKeys, shortcutModifiers
-
-
Constructor Summary
Constructors Constructor Description AbstractUiPlugIn()
AbstractUiPlugIn(String name)
AbstractUiPlugIn(String name, String toolTip)
AbstractUiPlugIn(String name, Icon icon)
AbstractUiPlugIn(String name, Icon icon, String toolTip)
AbstractUiPlugIn(Icon icon)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
actionPerformed(ActionEvent e)
Wrap the plug-in as an ActionListener.boolean
execute(PlugInContext context)
Method to be overridden by implementations to execute the plug-in.EnableCheck
getEnableCheck()
Use reflection to find an EnableCheck object defined by old method createEnableCheck in this plugin.Icon
getIcon()
Get the icon for the plug-in.String
getName()
Get the name of the plug-in.String
getToolTip()
Get the tool-tip for the plug-in.void
initialize(PlugInContext context)
Method to be overridden by implementations to initialize the plug-in.protected boolean
isRollingBackInvalidEdits(PlugInContext context)
protected void
reportNothingToUndoYet(PlugInContext context)
Indicates that this plug-in either (1) is undoable but hasn't modified the system yet or (2) does not modify the system.protected void
setWorkbenchContext(WorkbenchContext workbenchContext)
-
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
-
-
-
-
Field Detail
-
workbenchContext
protected WorkbenchContext workbenchContext
The workbench context.
-
enableCheck
protected EnableCheck enableCheck
-
-
Method Detail
-
initialize
public void initialize(PlugInContext context) throws Exception
Method to be overridden by implementations to initialize the plug-in. Plug-ins must invoke super.initialize().- Specified by:
initialize
in interfacePlugIn
- Overrides:
initialize
in classAbstractPlugIn
- Parameters:
context
- The plug-in context.- Throws:
Exception
- if an exception occur during initialization
-
execute
public boolean execute(PlugInContext context) throws Exception
Method to be overridden by implementations to execute the plug-in.- Specified by:
execute
in interfacePlugIn
- Overrides:
execute
in classAbstractPlugIn
- Parameters:
context
- The plug-in context.- Returns:
- true if the PlugIn has been executed
- Throws:
Exception
- if an Exception occurs during execution- See Also:
ThreadedPlugIn
-
reportNothingToUndoYet
protected void reportNothingToUndoYet(PlugInContext context)
Indicates that this plug-in either (1) is undoable but hasn't modified the system yet or (2) does not modify the system. In either case, the undo history will be preserved. If this method is not called, then this plug-in will be assumed to be non-undoable, and the undo history will be truncated.- Overrides:
reportNothingToUndoYet
in classAbstractPlugIn
- Parameters:
context
- plugin context
-
isRollingBackInvalidEdits
protected boolean isRollingBackInvalidEdits(PlugInContext context)
- Overrides:
isRollingBackInvalidEdits
in classAbstractPlugIn
-
actionPerformed
public void actionPerformed(ActionEvent e)
Wrap the plug-in as an ActionListener.- Specified by:
actionPerformed
in interfaceActionListener
- Parameters:
e
- The action event.
-
getEnableCheck
public EnableCheck getEnableCheck()
Description copied from class:AbstractPlugIn
Use reflection to find an EnableCheck object defined by old method createEnableCheck in this plugin.- Specified by:
getEnableCheck
in interfaceEnableChecked
- Overrides:
getEnableCheck
in classAbstractPlugIn
- Returns:
- the EnableCheck defined the old way
-
getIcon
public Icon getIcon()
Get the icon for the plug-in.- Specified by:
getIcon
in interfaceIconified
- Overrides:
getIcon
in classAbstractPlugIn
- Returns:
- The icon.
-
getName
public String getName()
Get the name of the plug-in. If a name was not specified ask super class.- Specified by:
getName
in interfacePlugIn
- Overrides:
getName
in classAbstractPlugIn
- Returns:
- The plug-in name.
-
getToolTip
public String getToolTip()
Get the tool-tip for the plug-in.- Returns:
- The tool-tip.
-
setWorkbenchContext
protected void setWorkbenchContext(WorkbenchContext workbenchContext)
- Parameters:
workbenchContext
- the workbenchContext to set
-
-