Package adams.gui.flow.tree.menu
Class AbstractEncloseActor
- 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.menu.AbstractTreePopupMenuItemAction
-
- adams.gui.flow.tree.menu.AbstractEncloseActor
-
- All Implemented Interfaces:
CleanUpHandler
,BaseAction
,PropertiesAction<StateContainer>
,TreePopupAction
,ActionListener
,Serializable
,Cloneable
,EventListener
,Action
- Direct Known Subclasses:
EncloseActor
,EncloseActorAll
,EncloseActorCommon
,EncloseActorCompact
,EncloseActorSpecial
public abstract class AbstractEncloseActor extends AbstractTreePopupMenuItemAction
Ancestor for menu items that can enclose selected actors in an actor handler.- Author:
- fracpete
- See Also:
- Serialized Form
-
-
Field Summary
-
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 AbstractEncloseActor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
doActionPerformed(ActionEvent e)
The action to execute.protected void
doUpdate()
Updates the action using the current state information.protected List<JMenuItem>
getAll()
Generates the menuitems for "all".protected List<JMenuItem>
getCommon()
Generates the menuitems for "common".protected List<JMenuItem>
getSpecial()
Generates the menuitems for "specia enclosures".protected List<JMenuItem>
sort(List<JMenuItem> menuitems)
Sorts the menu items, if necessary.-
Methods inherited from class adams.gui.flow.tree.menu.AbstractTreePopupMenuItemAction
addUndoPoint, getParentDialog, getParentFrame, getProperties, keyStrokeApplies
-
Methods inherited from class adams.gui.action.AbstractPropertiesMenuItemAction
getMenuItem
-
Methods inherited from class adams.gui.action.AbstractPropertiesAction
canUseIcon, getTitle, 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
-
-
-
-
Method Detail
-
sort
protected List<JMenuItem> sort(List<JMenuItem> menuitems)
Sorts the menu items, if necessary.- Parameters:
menuitems
- the menu items to sort- Returns:
- the (potentially) sorted items
-
getAll
protected List<JMenuItem> getAll()
Generates the menuitems for "all".- Returns:
- the "all" menuitems
-
getCommon
protected List<JMenuItem> getCommon()
Generates the menuitems for "common".- Returns:
- the "common" menuitems
-
getSpecial
protected List<JMenuItem> getSpecial()
Generates the menuitems for "specia enclosures".- Returns:
- the "special" menuitems
-
doUpdate
protected void doUpdate()
Updates the action using the current state information.- Specified by:
doUpdate
in classAbstractPropertiesAction<StateContainer,GenericObjectEditorDialog>
-
doActionPerformed
protected void doActionPerformed(ActionEvent e)
The action to execute.- Specified by:
doActionPerformed
in classAbstractBaseAction
- Parameters:
e
- the event
-
-