1 6 7 package org.netbeans.jellytools.modules.junit.actions; 8 9 import org.netbeans.jellytools.actions.*; 10 import java.awt.event.KeyEvent ; 11 import org.netbeans.jellytools.Bundle; 12 13 16 public class OpenTestAction extends Action { 17 18 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_OpenTest"); 19 20 21 public OpenTestAction() { 22 super(MENU, MENU, new Action.Shortcut(KeyEvent.CTRL_MASK|KeyEvent.ALT_MASK, KeyEvent.VK_K)); 23 } 24 } 25 | Popular Tags |