public interface ArooaAction
extends javax.swing.Action
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
VISIBLE_PROPERTY |
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 . |
static final java.lang.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.