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 31 public class JumpPrevAction extends CallbackSystemAction { 32 33 protected void initialize() { 34 super.initialize(); 35 setSurviveFocusChange(true); 36 putProperty ("noIconInMenu", Boolean.TRUE); } 38 39 protected String iconResource () { 40 return "org/netbeans/core/resources/actions/previousOutJump.gif"; } 42 43 public HelpCtx getHelpCtx() { 44 return new HelpCtx (JumpPrevAction.class); 45 } 46 47 public String getName() { 48 return NbBundle.getBundle(JumpPrevAction.class).getString("JumpPrevAction"); 49 } 50 51 protected boolean asynchronous() { 52 return false; 53 } 54 55 public void setActionPerformer (org.openide.util.actions.ActionPerformer performer) { 56 throw new java.lang.UnsupportedOperationException (); 57 } 58 59 public Object getActionMapKey () { 60 return "jumpPrev"; } 62 63 } 64 | Popular Tags |