Action (Java Platform SE 8 ) (original) (raw)

The Action interface provides a useful extension to theActionListener interface in cases where the same functionality may be accessed by several controls.

In addition to the actionPerformed method defined by theActionListener interface, this interface allows the application to define, in a single place:

This interface can be added to an existing class or used to create an adapter (typically, by subclassing AbstractAction). The Action object can then be added to multiple Action-aware containers and connected to Action-capable components. The GUI controls can then be activated or deactivated all at once by invoking the Action object'ssetEnabled method.

Note that Action implementations tend to be more expensive in terms of storage than a typical ActionListener, which does not offer the benefits of centralized control of functionality and broadcast of property changes. For this reason, you should take care to only use Actions where their benefits are desired, and use simple ActionListeners elsewhere.

Swing Components Supporting Action

Many of Swing's components have an Action property. When an Action is set on a component, the following things happen:

The following table describes the properties used bySwing components that support Actions. In the table, button refers to anyAbstractButton subclass, which includes not onlyJButton but also classes such asJMenuItem. Unless otherwise stated, anull property value in an Action (or aAction that is null) results in the button's corresponding property being set to null.

Component Property Components Action Key Notes
enabled All The isEnabled method
toolTipText All SHORT_DESCRIPTION
actionCommand All ACTION_COMMAND_KEY
mnemonic All buttons MNEMONIC_KEY A null value or Action results in the button's mnemonic property being set to'\0'.
text All buttons NAME If you do not want the text of the button to mirror that of the Action, set the propertyhideActionText to true. IfhideActionText is true, setting theAction changes the text of the button tonull and any changes to NAME are ignored. hideActionText is useful for tool bar buttons that typically only show an Icon.JToolBar.add(Action) sets the property totrue if the Action has a non-null value for LARGE_ICON_KEY orSMALL_ICON.
displayedMnemonicIndex All buttons DISPLAYED_MNEMONIC_INDEX_KEY If the value of DISPLAYED_MNEMONIC_INDEX_KEY is beyond the bounds of the text, it is ignored. WhensetAction is called, if the value from theAction is null, the displayed mnemonic index is not updated. In any subsequent changes toDISPLAYED_MNEMONIC_INDEX_KEY, null is treated as -1.
icon All buttons except of JCheckBox,JToggleButton and JRadioButton. either LARGE_ICON_KEY orSMALL_ICON The JMenuItem subclasses only useSMALL_ICON. All other buttons will useLARGE_ICON_KEY; if the value is null they use SMALL_ICON.
accelerator All JMenuItem subclasses, with the exception ofJMenu. ACCELERATOR_KEY
selected JToggleButton, JCheckBox,JRadioButton, JCheckBoxMenuItem andJRadioButtonMenuItem SELECTED_KEY Components that honor this property only use the value if it is non-null. For example, if you set an Action that has a null value for SELECTED_KEY on a JToggleButton, theJToggleButton will not update it's selected state in any way. Similarly, any time the JToggleButton's selected state changes it will only set the value back on the Action if the Action has a non-null value for SELECTED_KEY. Components that honor this property keep their selected state in sync with this property. When the same Action is used with multiple components, all the components keep their selected state in sync with this property. Mutually exclusive buttons, such as JToggleButtons in a ButtonGroup, force only one of the buttons to be selected. As such, do not use the same Action that defines a value for theSELECTED_KEY property with multiple mutually exclusive buttons.

JPopupMenu, JToolBar and JMenu all provide convenience methods for creating a component and setting theAction on the corresponding component. Refer to each of these classes for more information.

Action uses PropertyChangeListener to inform listeners the Action has changed. The beans specification indicates that a null property name can be used to indicate multiple values have changed. By default Swing components that take an Action do not handle such a change. To indicate that Swing should treat null according to the beans specification set the system propertyswing.actions.reconfigureOnNull to the String value true.