Interface and Description |
---|
org.openide.actions.ToolsAction.Model
Useless, see
ActionManager . |
Class and Description |
---|
org.openide.actions.UndockAction
Do not use.
|
org.openide.actions.WorkspaceSwitchAction
No longer used since there are no more workspaces.
|
Method and Description |
---|
org.openide.actions.ActionManager.invokeAction(Action, ActionEvent)
Just use
ActionListener.actionPerformed(java.awt.event.ActionEvent) directly instead. Since 4.11. |
org.openide.actions.ToolsAction.setModel(ToolsAction.Model)
Useless, see
ActionManager . |
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 . |