1 19 package org.openide.actions; 20 21 import org.openide.util.HelpCtx; 22 import org.openide.util.NbBundle; 23 import org.openide.util.actions.CallbackSystemAction; 24 25 26 30 public class GotoAction extends CallbackSystemAction { 31 32 public GotoAction () { 33 super(); 34 putProperty ("noIconInMenu", Boolean.TRUE); } 36 37 public String getName() { 38 return NbBundle.getMessage(GotoAction.class, "Goto"); 39 } 40 41 public HelpCtx getHelpCtx() { 42 return new HelpCtx(GotoAction.class); 43 } 44 45 protected boolean asynchronous() { 46 return false; 47 } 48 } 49 | Popular Tags |