| |
|
| java.lang.Object org.netbeans.spi.debugger.ActionsProvider
All known Subclasses: org.netbeans.spi.debugger.ActionsProviderSupport,
ActionsProvider | abstract public class ActionsProvider (Code) | | Represents implementation of one or more actions.
author: Jan Jancura |
addActionsProviderListener | abstract public void addActionsProviderListener(ActionsProviderListener l)(Code) | | Adds property change listener.
Parameters: l - new listener. |
doAction | abstract public void doAction(Object action)(Code) | | Called when the action is called (action button is pressed).
Parameters: action - an action which has been called |
getActions | abstract public Set getActions()(Code) | | Returns set of actions supported by this ActionsProvider.
set of actions supported by this ActionsProvider |
isEnabled | abstract public boolean isEnabled(Object action)(Code) | | Should return a state of given action.
Parameters: action - action |
postAction | public void postAction(Object action, Runnable actionPerformedNotifier)(Code) | | Post the action and let it process asynchronously.
The default implementation just delegates to
ActionsProvider.doAction in a separate thread and returns immediately.
Parameters: action - The action to post Parameters: actionPerformedNotifier - run this notifier after the action isdone. since: 1.5 |
removeActionsProviderListener | abstract public void removeActionsProviderListener(ActionsProviderListener l)(Code) | | Removes property change listener.
Parameters: l - removed listener. |
|
|
|