? nbbuild/X.diff Index: nbbuild/templates/projectized.xml =================================================================== RCS file: /cvs/nbbuild/templates/projectized.xml,v retrieving revision 1.24 diff -u -r1.24 projectized.xml --- nbbuild/templates/projectized.xml 25 Aug 2004 10:01:26 -0000 1.24 +++ nbbuild/templates/projectized.xml 7 Sep 2004 12:42:52 -0000 @@ -334,6 +334,19 @@ + + + + + + + + + + + + + Index: apisupport/project/src/org/netbeans/modules/apisupport/project/Actions.java =================================================================== RCS file: /cvs/apisupport/project/src/org/netbeans/modules/apisupport/project/Actions.java,v retrieving revision 1.21 diff -u -r1.21 Actions.java --- apisupport/project/src/org/netbeans/modules/apisupport/project/Actions.java 20 Aug 2004 22:03:39 -0000 1.21 +++ apisupport/project/src/org/netbeans/modules/apisupport/project/Actions.java 7 Sep 2004 12:42:52 -0000 @@ -47,6 +47,7 @@ actions.add(CommonProjectActions.newFileAction()); actions.add(null); actions.add(createGlobalAction(project, new String[] {"netbeans"}, "Build")); + actions.add(createGlobalAction(project, new String[] {"debug"}, "Debug")); actions.add(createGlobalAction(project, new String[] {"clean", "netbeans"}, "Clean and Build")); actions.add(createGlobalAction(project, new String[] {"clean"}, "Clean")); actions.add(null); @@ -113,6 +114,7 @@ globalCommands.put(ActionProvider.COMMAND_BUILD, new String[] {"netbeans"}); // NOI18N globalCommands.put(ActionProvider.COMMAND_CLEAN, new String[] {"clean"}); // NOI18N globalCommands.put(ActionProvider.COMMAND_REBUILD, new String[] {"clean", "netbeans"}); // NOI18N + globalCommands.put(ActionProvider.COMMAND_DEBUG, new String[] {"debug"}); // NOI18N /* Too dangerous: globalCommands.put(ActionProvider.COMMAND_RUN, new String[] {"reload"}); // NOI18N */