Action (Java SE 19 & JDK 19) (original) (raw)

All Superinterfaces:

[ActionListener](../../java/awt/event/ActionListener.html "interface in java.awt.event"), [EventListener](../../../java.base/java/util/EventListener.html "interface in java.util")

All Known Implementing Classes:

[AbstractAction](AbstractAction.html "class in javax.swing"), [BasicDesktopPaneUI.CloseAction](plaf/basic/BasicDesktopPaneUI.CloseAction.html "class in javax.swing.plaf.basic"), [BasicDesktopPaneUI.MaximizeAction](plaf/basic/BasicDesktopPaneUI.MaximizeAction.html "class in javax.swing.plaf.basic"), [BasicDesktopPaneUI.MinimizeAction](plaf/basic/BasicDesktopPaneUI.MinimizeAction.html "class in javax.swing.plaf.basic"), [BasicDesktopPaneUI.NavigateAction](plaf/basic/BasicDesktopPaneUI.NavigateAction.html "class in javax.swing.plaf.basic"), [BasicDesktopPaneUI.OpenAction](plaf/basic/BasicDesktopPaneUI.OpenAction.html "class in javax.swing.plaf.basic"), [BasicFileChooserUI.ApproveSelectionAction](plaf/basic/BasicFileChooserUI.ApproveSelectionAction.html "class in javax.swing.plaf.basic"), [BasicFileChooserUI.CancelSelectionAction](plaf/basic/BasicFileChooserUI.CancelSelectionAction.html "class in javax.swing.plaf.basic"), [BasicFileChooserUI.ChangeToParentDirectoryAction](plaf/basic/BasicFileChooserUI.ChangeToParentDirectoryAction.html "class in javax.swing.plaf.basic"), [BasicFileChooserUI.GoHomeAction](plaf/basic/BasicFileChooserUI.GoHomeAction.html "class in javax.swing.plaf.basic"), [BasicFileChooserUI.NewFolderAction](plaf/basic/BasicFileChooserUI.NewFolderAction.html "class in javax.swing.plaf.basic"), [BasicFileChooserUI.UpdateAction](plaf/basic/BasicFileChooserUI.UpdateAction.html "class in javax.swing.plaf.basic"), [BasicInternalFrameTitlePane.CloseAction](plaf/basic/BasicInternalFrameTitlePane.CloseAction.html "class in javax.swing.plaf.basic"), [BasicInternalFrameTitlePane.IconifyAction](plaf/basic/BasicInternalFrameTitlePane.IconifyAction.html "class in javax.swing.plaf.basic"), [BasicInternalFrameTitlePane.MaximizeAction](plaf/basic/BasicInternalFrameTitlePane.MaximizeAction.html "class in javax.swing.plaf.basic"), [BasicInternalFrameTitlePane.MoveAction](plaf/basic/BasicInternalFrameTitlePane.MoveAction.html "class in javax.swing.plaf.basic"), [BasicInternalFrameTitlePane.RestoreAction](plaf/basic/BasicInternalFrameTitlePane.RestoreAction.html "class in javax.swing.plaf.basic"), [BasicInternalFrameTitlePane.SizeAction](plaf/basic/BasicInternalFrameTitlePane.SizeAction.html "class in javax.swing.plaf.basic"), [BasicSliderUI.ActionScroller](plaf/basic/BasicSliderUI.ActionScroller.html "class in javax.swing.plaf.basic"), [BasicTreeUI.TreeCancelEditingAction](plaf/basic/BasicTreeUI.TreeCancelEditingAction.html "class in javax.swing.plaf.basic"), [BasicTreeUI.TreeHomeAction](plaf/basic/BasicTreeUI.TreeHomeAction.html "class in javax.swing.plaf.basic"), [BasicTreeUI.TreeIncrementAction](plaf/basic/BasicTreeUI.TreeIncrementAction.html "class in javax.swing.plaf.basic"), [BasicTreeUI.TreePageAction](plaf/basic/BasicTreeUI.TreePageAction.html "class in javax.swing.plaf.basic"), [BasicTreeUI.TreeToggleAction](plaf/basic/BasicTreeUI.TreeToggleAction.html "class in javax.swing.plaf.basic"), [BasicTreeUI.TreeTraverseAction](plaf/basic/BasicTreeUI.TreeTraverseAction.html "class in javax.swing.plaf.basic"), [DefaultEditorKit.BeepAction](text/DefaultEditorKit.BeepAction.html "class in javax.swing.text"), [DefaultEditorKit.CopyAction](text/DefaultEditorKit.CopyAction.html "class in javax.swing.text"), [DefaultEditorKit.CutAction](text/DefaultEditorKit.CutAction.html "class in javax.swing.text"), [DefaultEditorKit.DefaultKeyTypedAction](text/DefaultEditorKit.DefaultKeyTypedAction.html "class in javax.swing.text"), [DefaultEditorKit.InsertBreakAction](text/DefaultEditorKit.InsertBreakAction.html "class in javax.swing.text"), [DefaultEditorKit.InsertContentAction](text/DefaultEditorKit.InsertContentAction.html "class in javax.swing.text"), [DefaultEditorKit.InsertTabAction](text/DefaultEditorKit.InsertTabAction.html "class in javax.swing.text"), [DefaultEditorKit.PasteAction](text/DefaultEditorKit.PasteAction.html "class in javax.swing.text"), [HTMLEditorKit.HTMLTextAction](text/html/HTMLEditorKit.HTMLTextAction.html "class in javax.swing.text.html"), [HTMLEditorKit.InsertHTMLTextAction](text/html/HTMLEditorKit.InsertHTMLTextAction.html "class in javax.swing.text.html"), [MetalFileChooserUI.DirectoryComboBoxAction](plaf/metal/MetalFileChooserUI.DirectoryComboBoxAction.html "class in javax.swing.plaf.metal"), [StyledEditorKit.AlignmentAction](text/StyledEditorKit.AlignmentAction.html "class in javax.swing.text"), [StyledEditorKit.BoldAction](text/StyledEditorKit.BoldAction.html "class in javax.swing.text"), [StyledEditorKit.FontFamilyAction](text/StyledEditorKit.FontFamilyAction.html "class in javax.swing.text"), [StyledEditorKit.FontSizeAction](text/StyledEditorKit.FontSizeAction.html "class in javax.swing.text"), [StyledEditorKit.ForegroundAction](text/StyledEditorKit.ForegroundAction.html "class in javax.swing.text"), [StyledEditorKit.ItalicAction](text/StyledEditorKit.ItalicAction.html "class in javax.swing.text"), [StyledEditorKit.StyledTextAction](text/StyledEditorKit.StyledTextAction.html "class in javax.swing.text"), [StyledEditorKit.UnderlineAction](text/StyledEditorKit.UnderlineAction.html "class in javax.swing.text"), [TextAction](text/TextAction.html "class in javax.swing.text")


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.

Supported Action properties

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'smnemonic property being set to '\0'.
text All buttons NAME If you do not want the text of the button to mirror that of theAction, set the property hideActionText to true. If hideActionText is true, setting the Action changes the text of the button to null and any changes toNAME are ignored. hideActionText is useful for tool bar buttons that typically only show an Icon.JToolBar.add(Action) sets the property to true if theAction 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. When setAction is called, if the value from the Action 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 andJRadioButton. either LARGE_ICON_KEY or SMALL_ICON The JMenuItem subclasses only use SMALL_ICON. All other buttons will use LARGE_ICON_KEY; if the value isnull they use SMALL_ICON.
accelerator All JMenuItem subclasses, with the exception of JMenu. ACCELERATOR_KEY
selected JToggleButton, JCheckBox, JRadioButton,JCheckBoxMenuItem and JRadioButtonMenuItem SELECTED_KEY Components that honor this property only use the value if it isnon-null. For example, if you set an Action that has anull value for SELECTED_KEY on a JToggleButton, the JToggleButton 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 aButtonGroup, 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.

Since:

1.2

See Also:

Fields
The key used for storing a KeyStroke to be used as the accelerator for the action.
The key used to determine the command String for theActionEvent that will be created when anAction is going to be notified as the result of residing in a Keymap associated with aJComponent.
The key used for storing an Integer that corresponds to the index in the text (identified by the NAME property) that the decoration for a mnemonic should be rendered at.
The key used for storing an Icon.
The key used for storing a longer String description for the action, could be used for context-sensitive help.
The key used for storing an Integer that corresponds to one of the KeyEvent key codes.
The key used for storing the String name for the action, used for a menu or button.
The key used for storing a Boolean that corresponds to the selected state.
The key used for storing a short String description for the action, used for tooltip text.
The key used for storing a small Icon, such as ImageIcon.

default boolean
Determines whether the action should be performed with the specified sender object.
void
Adds a PropertyChange listener.
Gets one of this object's properties using the associated key.
boolean
[isEnabled](#isEnabled%28%29)()
Returns the enabled state of the Action.
void
Sets one of this object's properties using the associated key.
void
Removes a PropertyChange listener.
void
[setEnabled](#setEnabled%28boolean%29)(boolean b)
Sets the enabled state of the Action.