1 19 package org.netbeans.jellytools.modules.junit.actions; 20 21 import org.netbeans.jellytools.Bundle; 22 import org.netbeans.jellytools.actions.Action; 23 24 28 public class ResultWindowViewAction extends Action { 29 30 private static final String menu = 31 Bundle.getStringTrimmed("org.netbeans.core.Bundle", 32 "Menu/Window") + 33 "|" + 34 Bundle.getStringTrimmed("org.netbeans.modules.junit.output.Bundle", 35 "ACSN_TestResults"); 36 37 38 39 public ResultWindowViewAction() { 40 super(menu, null, "org.netbeans.junit.output.ResultWindowOpenAction"); 41 } 42 43 44 } 45 | Popular Tags |