Java Code Examples for org.netbeans.spi.project.ActionProvider#COMMAND_MOVE

The following examples show how to use org.netbeans.spi.project.ActionProvider#COMMAND_MOVE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Actions.java    From netbeans with Apache License 2.0 5 votes vote down vote up
public static synchronized Action moveProject() {
    if (MOVE_PROJECT == null) {
        Action a = new ProjectAction(
                ActionProvider.COMMAND_MOVE,
  NbBundle.getMessage(Actions.class, "LBL_MoveProjectAction_Name"),
                null, //NOI18N
                null );
        MOVE_PROJECT = a;
    }
    
    return MOVE_PROJECT;
}
 
Example 2
Source File: MoveCommand.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public String getCommandId() {
    return ActionProvider.COMMAND_MOVE;
}
 
Example 3
Source File: MoveCommand.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public String getCommandId() {
    return ActionProvider.COMMAND_MOVE;
}