1 19 20 package org.netbeans.api.debugger; 21 22 import java.util.EventListener ; 23 24 25 31 public interface ActionsManagerListener extends EventListener { 32 33 40 public static final String PROP_ACTION_PERFORMED = "actionPerformed"; 48 public static final String PROP_ACTION_STATE_CHANGED = "actionStateChanged"; 50 55 public void actionPerformed ( 56 Object action 57 ); 58 59 65 public void actionStateChanged ( 66 Object action, boolean enabled 67 ); 68 } 69 70 | Popular Tags |