KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > jellytools > modules > junit > actions > OpenTestAction


1 /*
2  * OpenTestAction.java
3  *
4  * Created on 2/6/03 2:21 PM
5  */

6
7 package org.netbeans.jellytools.modules.junit.actions;
8
9 import org.netbeans.jellytools.actions.*;
10 import java.awt.event.KeyEvent JavaDoc;
11 import org.netbeans.jellytools.Bundle;
12
13 /** OpenTestAction Class
14  * @author dave
15  */

16 public class OpenTestAction extends Action {
17
18     public static final String JavaDoc 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     /** creates new OpenTestAction instance */
21     public OpenTestAction() {
22         super(MENU, MENU, new Action.Shortcut(KeyEvent.CTRL_MASK|KeyEvent.ALT_MASK, KeyEvent.VK_K));
23     }
24 }
25
Popular Tags