Interface | Description |
---|---|
org.openide.actions.ToolsAction.Model |
Useless, see
ActionManager . |
Class | Description |
---|---|
org.openide.actions.UndockAction |
Do not use.
|
org.openide.actions.WorkspaceSwitchAction |
No longer used since there are no more workspaces.
|
Method | Description |
---|---|
org.openide.actions.ActionManager.invokeAction(Action, ActionEvent) |
Just use
ActionListener.actionPerformed(java.awt.event.ActionEvent) directly instead. Since 4.11. |
org.openide.actions.PasteAction.setPasteTypes(PasteType[]) |
Use
TopComponent.getActionMap ().put (javax.swing.text.DefaultEditorKit.pasteAction, yourPasteAction);
If you want register more paste types then use an action which delegates to
an array of PasteAction or also can delegate to an array of
org.openide.util.datatransfer.PasteType . |
org.openide.actions.ToolsAction.setModel(ToolsAction.Model) |
Useless, see
ActionManager . |
Built on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.