public abstract class ActionManager extends Object
Modifier and Type | Field and Description |
---|---|
static String |
PROP_CONTEXT_ACTIONS
name of property that is fired when set of context actions
changes.
|
Constructor and Description |
---|
ActionManager() |
Modifier and Type | Method and Description |
---|---|
void |
addPropertyChangeListener(PropertyChangeListener listener)
Registers PropertyChangeListener to receive events.
|
protected void |
firePropertyChange(String name,
Object o,
Object n)
Notifies all registered listeners about the event.
|
abstract SystemAction[] |
getContextActions()
Get all registered actions that should be displayed
by tools action.
|
static ActionManager |
getDefault()
Get the default action manager from lookup.
|
void |
invokeAction(Action a,
ActionEvent e)
Deprecated.
Just use
ActionListener.actionPerformed(java.awt.event.ActionEvent) directly instead. Since 4.11. |
void |
removePropertyChangeListener(PropertyChangeListener listener)
Removes PropertyChangeListener from the list of listeners.
|
public static final String PROP_CONTEXT_ACTIONS
public static ActionManager getDefault()
public abstract SystemAction[] getContextActions()
null
s that will be replaced by separators.@Deprecated public void invokeAction(Action a, ActionEvent e)
ActionListener.actionPerformed(java.awt.event.ActionEvent)
directly instead. Since 4.11.public final void addPropertyChangeListener(PropertyChangeListener listener)
listener
- The listener to register.public final void removePropertyChangeListener(PropertyChangeListener listener)
listener
- The listener to remove.