1 19 20 package org.netbeans.core.output; 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 PreviousOutJumpAction extends CallbackSystemAction { 32 33 protected void initialize() { 34 super.initialize(); 35 setSurviveFocusChange(true); 37 } 38 39 protected String iconResource () { 40 return "org/netbeans/core/resources/actions/previousOutJump.gif"; } 42 43 public HelpCtx getHelpCtx() { 44 return new HelpCtx (PreviousOutJumpAction.class); 45 } 46 47 public String getName() { 48 return NbBundle.getBundle(PreviousOutJumpAction.class).getString("PreviousOutJump"); 49 } 50 51 protected boolean asynchronous() { 52 return false; 53 } 54 55 } 56 | Popular Tags |