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 FindAction extends CallbackSystemAction { 31 public String getName() { 32 return NbBundle.getMessage(FindAction.class, "Find"); 33 } 34 35 public HelpCtx getHelpCtx() { 36 return new HelpCtx(FindAction.class); 37 } 38 39 protected String iconResource() { 40 return "org/openide/resources/actions/find.gif"; } 42 43 protected boolean asynchronous() { 44 return false; 45 } 46 } 47 | Popular Tags |