1 19 20 package org.netbeans.jellytools.modules.junit.actions; 21 22 import org.netbeans.jellytools.actions.*; 23 import java.awt.event.KeyEvent ; 24 import org.netbeans.jellytools.Bundle; 25 26 29 public class CreateTestsAction extends Action { 30 31 public static final String MENU = Bundle.getString("org.netbeans.core.Bundle", "Actions/Tools") + "|" + Bundle.getString("org.netbeans.modules.junit.Bundle", "LBL_Action_Tests") + "|" + Bundle.getString("org.netbeans.modules.junit.Bundle", "LBL_Action_CreateTest"); 32 33 34 public CreateTestsAction() { 35 super(MENU, MENU, new Action.Shortcut(KeyEvent.CTRL_MASK|KeyEvent.ALT_MASK, KeyEvent.VK_J)); 36 } 37 } 38 | Popular Tags |