Package org.graffiti.editor.actions
Class RunAlgorithm
java.lang.Object
javax.swing.AbstractAction
org.graffiti.plugin.actions.GraffitiAction
org.graffiti.editor.actions.RunAlgorithm
- All Implemented Interfaces:
ActionListener
,Serializable
,Cloneable
,EventListener
,Action
public class RunAlgorithm extends GraffitiAction
Runs an algorithm.
- Version:
- $Revision: 1.13 $
- See Also:
- Serialized Form
-
Field Summary
Fields inherited from interface javax.swing.Action
ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, DISPLAYED_MNEMONIC_INDEX_KEY, LARGE_ICON_KEY, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SELECTED_KEY, SHORT_DESCRIPTION, SMALL_ICON
-
Constructor Summary
Constructors Constructor Description RunAlgorithm(String algorithmClassName, String name, MainFrame mainFrame, EditComponentManager editComponentManager, Algorithm instance)
Constructor for RunAlgorithm. -
Method Summary
Modifier and Type Method Description void
actionPerformed(ActionEvent a)
String
getAlgorithmClassName()
Get the name of the algorithm that this action will run.HelpContext
getHelpContext()
Returns the help context for this action.boolean
isEnabled()
Returnstrue
, if this action is enabled.Methods inherited from class org.graffiti.plugin.actions.GraffitiAction
getName, performAction, setEnabled, update, updateAllActions
Methods inherited from class javax.swing.AbstractAction
addPropertyChangeListener, getKeys, getPropertyChangeListeners, getValue, putValue, removePropertyChangeListener
-
Constructor Details
-
RunAlgorithm
public RunAlgorithm(String algorithmClassName, String name, MainFrame mainFrame, EditComponentManager editComponentManager, Algorithm instance)Constructor for RunAlgorithm.- Parameters:
algorithmClassName
- DOCUMENT ME!name
-mainFrame
-editComponentManager
- DOCUMENT ME!
-
-
Method Details
-
getAlgorithmClassName
Get the name of the algorithm that this action will run.- Returns:
- the name of the algorithm that this action will run.
-
isEnabled
public boolean isEnabled()Description copied from class:GraffitiAction
Returnstrue
, if this action is enabled.- Specified by:
isEnabled
in interfaceAction
- Specified by:
isEnabled
in classGraffitiAction
- Returns:
true
, if this action is enabled.- See Also:
Action.isEnabled()
-
getHelpContext
Description copied from class:GraffitiAction
Returns the help context for this action.- Overrides:
getHelpContext
in classGraffitiAction
- Returns:
- the help context for this action.
- See Also:
GraffitiAction.getHelpContext()
-
actionPerformed
-