public interface ArooaAction extends Action
Modifier and Type | Field and Description |
---|---|
static String |
VISIBLE_PROPERTY |
ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, DISPLAYED_MNEMONIC_INDEX_KEY, LARGE_ICON_KEY, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SELECTED_KEY, SHORT_DESCRIPTION, SMALL_ICON
Modifier and Type | Method and Description |
---|---|
boolean |
isVisible()
Returns the visible state of the
Action . |
void |
setVisible(boolean b)
Sets the visible state of the
Action . |
addPropertyChangeListener, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
actionPerformed
static final String VISIBLE_PROPERTY
void setVisible(boolean b)
Action
. When enabled,
any component associated with this object is visible and
able to fire this object's actionPerformed
method.
If the value has changed, a PropertyChangeEvent
is sent
to listeners.b
- true to make this Action
visible, false to
make it invisible.boolean isVisible()
Action
. When visible,
any component associated with this object is active and
able to fire this object's actionPerformed
method.Action
is visible.