Java javax.swing AbstractAction fields, constructors, methods, implement or subclass

Example usage for Java javax.swing AbstractAction fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing AbstractAction.

The text is from its open source code.

Subclass

javax.swing.AbstractAction has subclasses.
Click this link to see all its subclasses.

Constructor

AbstractAction(String name)
Creates an Action with the specified name.
AbstractAction(String name, Icon icon)
Creates an Action with the specified name and small icon.
AbstractAction()
Creates an Action .

Method

voidactionPerformed(ActionEvent e)
Invoked when an action occurs.
voidaddPropertyChangeListener(PropertyChangeListener listener)
Adds a PropertyChangeListener to the listener list.
ObjectgetValue(String key)
Gets the Object associated with the specified key.
booleanisEnabled()
Returns true if the action is enabled.
voidputValue(String key, Object newValue)
Sets the Value associated with the specified key.
voidsetEnabled(boolean newValue)
Sets whether the Action is enabled.