| org.netbeans.spi.project.ui.support.ProjectActionPerformer
ProjectActionPerformer | public interface ProjectActionPerformer (Code) | | Callback interface for project- and main project-sensitive actions.
author: Petr Hrebejk |
Method Summary | |
boolean | enable(Project project) Called when the context of the action changes and the action should
be enabled or disabled within the new context, according to the newly
selected project. | void | perform(Project project) Called when the user invokes the action. |
enable | boolean enable(Project project)(Code) | | Called when the context of the action changes and the action should
be enabled or disabled within the new context, according to the newly
selected project.
Parameters: project - the currently selected project, or null if no project is selected true to enable the action, false to disable it |
perform | void perform(Project project)(Code) | | Called when the user invokes the action.
Parameters: project - the project this action was invoked for (XXX can this be null or not?) |
|
|