站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 5.0.0

ActionsManagerListener (NetBeans Debugger Core API) - NetBeans API Javadoc 5.0.0

 

org.netbeans.api.debugger
Interface ActionsManagerListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
ActionsManagerAdapter

public interface ActionsManagerListener
extends EventListener

This listener notifies about changes in the DebuggerEngine.


Field Summary
static String PROP_ACTION_PERFORMED
          Property name constant for actionPerformed(Object) event.
static String PROP_ACTION_STATE_CHANGED
          Property name constant for actionPerformed(Object) event.
 
Method Summary
 void actionPerformed(Object action)
          Called when some action is performed.
 void actionStateChanged(Object action, boolean enabled)
          Called when a state of some action has been changed.
 

Field Detail

PROP_ACTION_PERFORMED

public static final String PROP_ACTION_PERFORMED
Property name constant for actionPerformed(Object) event. It should be use as a propertyName argument in ActionsManager.addActionsManagerListener(String,ActionsManagerListener) call, if you would like to receive this event notification.

See Also:
Constant Field Values

PROP_ACTION_STATE_CHANGED

public static final String PROP_ACTION_STATE_CHANGED
Property name constant for actionPerformed(Object) event. It should be use as a propertyName argument in ActionsManager.addActionsManagerListener(String,ActionsManagerListener) call, if you would like to receive this event notification.

See Also:
Constant Field Values
Method Detail

actionPerformed

public void actionPerformed(Object action)
Called when some action is performed.

Parameters:
action - action constant

actionStateChanged

public void actionStateChanged(Object action,
                               boolean enabled)
Called when a state of some action has been changed.

Parameters:
action - action constant
enabled - a new state of action

 

Built on May 3 2007.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.