| Package | Description |
|---|---|
| org.openide.util.actions |
There are several types of standard actions
that should be used for many user interactions within NetBeans.
|
| Modifier and Type | Class | Description |
|---|---|---|
class |
BooleanStateAction |
An action that can be toggled on or off.
|
class |
CallableSystemAction |
Not preferred anymore, use Actions.alwaysEnabled
instead.
|
class |
CallbackSystemAction |
Not preferred anymore, the replacement is
Actions.callback factory method.
|
| Modifier and Type | Method | Description |
|---|---|---|
static <T extends SystemAction> |
SystemAction.get(java.lang.Class<T> actionClass) |
Obtain a singleton instance of the action with a specified class.
|
| Modifier and Type | Method | Description |
|---|---|---|
static SystemAction[] |
SystemAction.linkActions(SystemAction[] actions1,
SystemAction[] actions2) |
Concatenate two arrays of actions.
|
| Modifier and Type | Method | Description |
|---|---|---|
static javax.swing.JPopupMenu |
SystemAction.createPopupMenu(SystemAction[] actions) |
|
static javax.swing.JToolBar |
SystemAction.createToolbarPresenter(SystemAction[] actions) |
Create the default toolbar representation of an array of actions.
|
static SystemAction[] |
SystemAction.linkActions(SystemAction[] actions1,
SystemAction[] actions2) |
Concatenate two arrays of actions.
|
void |
ActionPerformer.performAction(SystemAction action) |
Deprecated.
Called when the action is to be performed.
|
Built on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.