1 19 20 package org.netbeans.core.actions; 21 22 import org.openide.util.HelpCtx; 23 import org.openide.util.NbBundle; 24 import org.openide.util.actions.CallbackSystemAction; 25 26 30 public class JumpNextAction extends CallbackSystemAction { 31 32 protected void initialize() { 33 super.initialize(); 34 setSurviveFocusChange(true); 35 putProperty ("noIconInMenu", Boolean.TRUE); } 37 38 protected String iconResource () { 39 return "org/netbeans/core/resources/actions/nextOutJump.gif"; } 41 42 public HelpCtx getHelpCtx() { 43 return new HelpCtx (JumpNextAction.class); 44 } 45 46 public String getName() { 47 return NbBundle.getBundle(JumpNextAction.class).getString("JumpNextAction"); 48 } 49 50 protected boolean asynchronous() { 51 return false; 52 } 53 54 public void setActionPerformer (org.openide.util.actions.ActionPerformer performer) { 55 throw new java.lang.UnsupportedOperationException (); 56 } 57 public Object getActionMapKey () { 58 return "jumpNext"; } 60 } 61 | Popular Tags |