|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Unsafe:
Field Summary | |
static String |
ACCELERATOR_KEY
Suppressed: The key used for storing a KeyStroke to be used as the
accelerator for the action. |
static String |
ACTION_COMMAND_KEY
Suppressed: The key used to determine the command string for the ActionEvent that will be created when an
Action is going to be notified as the result of
residing in a Keymap associated with a
JComponent . |
static String |
DEFAULT
Suppressed: Useful constants that can be used as the storage-retrieval key when setting or getting one of this object's properties (text or icon). |
static String |
LONG_DESCRIPTION
Suppressed: The key used for storing a longer description for the action, could be used for context-sensitive help. |
static String |
MNEMONIC_KEY
Suppressed: The key used for storing an int key code to be used as the mnemonic for the action. |
static String |
NAME
Suppressed: The key used for storing the name for the action, used for a menu or button. |
static String |
SHORT_DESCRIPTION
Suppressed: The key used for storing a short description for the action, used for tooltip text. |
static String |
SMALL_ICON
Suppressed: The key used for storing a small icon for the action, used for toolbar buttons. |
Method Summary | |
void |
addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Suppressed: Adds a PropertyChange listener. |
Object |
getValue(String key)
Enabled: Gets one of this object's properties using the associated key. |
boolean |
isEnabled()
Enabled: Returns the enabled state of the Action . |
void |
putValue(String key,
Object value)
Suppressed: Sets one of this object's properties using the associated key. |
void |
removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Suppressed: Removes a PropertyChange listener. |
void |
setEnabled(boolean b)
Enabled: Sets the enabled state of the Action . |
Methods inherited from interface java.awt.event.ActionListener |
actionPerformed |
Field Detail |
public static final String DEFAULT
public static final String NAME
public static final String SHORT_DESCRIPTION
public static final String LONG_DESCRIPTION
public static final String SMALL_ICON
public static final String ACTION_COMMAND_KEY
ActionEvent
that will be created when an
Action
is going to be notified as the result of
residing in a Keymap
associated with a
JComponent
.
public static final String ACCELERATOR_KEY
KeyStroke
to be used as the
accelerator for the action.
public static final String MNEMONIC_KEY
Method Detail |
public Object getValue(String key)
putValue(java.lang.String, java.lang.Object)
public void putValue(String key, Object value)
PropertyChangeEvent
is sent
to listeners.
key
- a String
containing the keyvalue
- an Object
valuepublic void setEnabled(boolean b)
Action
. When enabled,
any component associated with this object is active and
able to fire this object's actionPerformed
method.
If the value has changed, a PropertyChangeEvent
is sent
to listeners.
b
- true to enable this Action
, false to disable itpublic boolean isEnabled()
Action
. When enabled,
any component associated with this object is active and
able to fire this object's actionPerformed
method.
Action
is enabledpublic void addPropertyChangeListener(java.beans.PropertyChangeListener listener)
PropertyChange
listener. Containers and attached
components use these methods to register interest in this
Action
object. When its enabled state or other property
changes, the registered listeners are informed of the change.
listener
- a PropertyChangeListener
objectpublic void removePropertyChangeListener(java.beans.PropertyChangeListener listener)
PropertyChange
listener.
listener
- a PropertyChangeListener
objectaddPropertyChangeListener(java.beans.PropertyChangeListener)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |