Package adams.gui.flow.tree.quickaction
Class ChangeCallableActor
- java.lang.Object
-
- javax.swing.AbstractAction
-
- adams.gui.action.AbstractBaseAction
-
- adams.gui.action.AbstractActionWithDialog<D>
-
- adams.gui.action.AbstractPropertiesAction<T,D>
-
- adams.gui.action.AbstractPropertiesMenuItemAction<StateContainer,GenericObjectEditorDialog>
-
- adams.gui.flow.tree.quickaction.AbstractTreeQuickMenuItemAction
-
- adams.gui.flow.tree.quickaction.ChangeCallableActor
-
- All Implemented Interfaces:
CleanUpHandler
,BaseAction
,PropertiesAction<StateContainer>
,TreeQuickAction
,ActionListener
,Serializable
,Cloneable
,EventListener
,Action
public class ChangeCallableActor extends AbstractTreeQuickMenuItemAction
Changes the callable actor that is being referenced.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
CALLABLE_NAME
-
Fields inherited from class adams.gui.action.AbstractPropertiesAction
m_State
-
Fields inherited from class adams.gui.action.AbstractActionWithDialog
m_Dialog
-
Fields inherited from class adams.gui.action.AbstractBaseAction
ASYNCHRONOUS
-
Fields inherited from class javax.swing.AbstractAction
changeSupport, enabled
-
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 ChangeCallableActor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
doActionPerformed(ActionEvent e)
Invoked when an action occurs.protected void
doUpdate()
Performs the actual update of the state of the action.protected List<String>
findCallableActors()
Locates all the callable actors for the node.protected String
getTitle()
Returns the caption of this action.protected boolean
isValid(TreePath path)
Checks whether the select path is a valid callable actor reference.protected CallableActorReference
selectCallableActor(CallableActorReference refOld)
Prompts the user to select callable actor.-
Methods inherited from class adams.gui.flow.tree.quickaction.AbstractTreeQuickMenuItemAction
addUndoPoint, getParentDialog, getParentFrame, getProperties, keyStrokeApplies, updateSelectedActor
-
Methods inherited from class adams.gui.action.AbstractPropertiesMenuItemAction
getMenuItem
-
Methods inherited from class adams.gui.action.AbstractPropertiesAction
canUseIcon, initialize, update
-
Methods inherited from class adams.gui.action.AbstractActionWithDialog
cleanUp, createDialog, getDialog
-
Methods inherited from class adams.gui.action.AbstractBaseAction
actionPerformed, getAccelerator, getIcon, getMnemonic, getName, getToolTipText, hasAccelerator, hasIcon, hasMnemonic, hasToolTipText, isAsynchronous, isSelected, postActionPerformed, preActionPerformed, setAccelerator, setAsynchronous, setIcon, setIcon, setMnemonic, setName, setSelected, setToolTipText
-
Methods inherited from class javax.swing.AbstractAction
addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.swing.Action
accept, addPropertyChangeListener, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
-
Methods inherited from interface java.awt.event.ActionListener
actionPerformed
-
Methods inherited from interface adams.gui.action.BaseAction
cleanUp, getAccelerator, getIcon, getMnemonic, getName, getToolTipText, hasAccelerator, hasMnemonic, hasToolTipText, isAsynchronous, isSelected, setAccelerator, setAsynchronous, setIcon, setIcon, setMnemonic, setName, setSelected, setToolTipText
-
Methods inherited from interface adams.gui.action.PropertiesAction
getMenuItem, update
-
-
-
-
Field Detail
-
CALLABLE_NAME
public static final String CALLABLE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTitle
protected String getTitle()
Returns the caption of this action.- Specified by:
getTitle
in classAbstractPropertiesAction<StateContainer,GenericObjectEditorDialog>
- Returns:
- the caption, null if not applicable
-
doUpdate
protected void doUpdate()
Performs the actual update of the state of the action.- Specified by:
doUpdate
in classAbstractPropertiesAction<StateContainer,GenericObjectEditorDialog>
-
isValid
protected boolean isValid(TreePath path)
Checks whether the select path is a valid callable actor reference.- Parameters:
path
- the path to check- Returns:
- true if valid
-
findCallableActors
protected List<String> findCallableActors()
Locates all the callable actors for the node.- Returns:
- the located callable actors (including CallableActors nodes)
-
selectCallableActor
protected CallableActorReference selectCallableActor(CallableActorReference refOld)
Prompts the user to select callable actor.- Parameters:
refOld
- the old callable actor- Returns:
- the selected actor, null if none selected
-
doActionPerformed
protected void doActionPerformed(ActionEvent e)
Invoked when an action occurs.- Specified by:
doActionPerformed
in classAbstractBaseAction
- Parameters:
e
- the event
-
-