Package adams.gui.flow.tree.quickaction
Interface TreeQuickAction
-
- All Superinterfaces:
Action,ActionListener,BaseAction,CleanUpHandler,EventListener,PropertiesAction<StateContainer>
- All Known Implementing Classes:
AbstractGOEQuickAction,AbstractTreeQuickMenuItemAction,ChangeCallableActor,ChangeExternalActorFile,ChangeStorageName,ChangeVariableName,ChangeVariableValue,EditBooleanCondition,EditBooleanExpressionText,EditCombineXExpression,EditConversion,EditMathematicalExpressionText,EditStorageValuesArrayNames,EditStringConstantsStrings,EditVariablesArrayVariables,EditWekaASEvaluator,EditWekaASSearch,EditWekaClassifier,EditWekaClusterer,EditWekaDataGenerator,EditWekaFilter,EditWekaStreamableFilter,RenameActor
public interface TreeQuickAction extends PropertiesAction<StateContainer>
Interface for menu items in the quick action menu of the flow tree.- Author:
- fracpete
-
-
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
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddUndoPoint(String comment)Adds an undo point with the given comment.booleankeyStrokeApplies(KeyStroke ks)Checks whether the keystroke matches.-
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
-
-
-
-
Method Detail
-
keyStrokeApplies
boolean keyStrokeApplies(KeyStroke ks)
Checks whether the keystroke matches.- Parameters:
ks- the keystroke to match- Returns:
- true if a match
-
addUndoPoint
void addUndoPoint(String comment)
Adds an undo point with the given comment.- Parameters:
comment- the comment for the undo point
-
-