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 29 public final class PopupAction extends CallbackSystemAction { 30 protected void initialize() { 31 super.initialize(); 32 33 putProperty("OpenIDE-Transmodal-Action", Boolean.TRUE); } 36 37 public String getName() { 38 return NbBundle.getMessage(PopupAction.class, "Popup"); 39 } 40 41 public HelpCtx getHelpCtx() { 42 return new HelpCtx(PopupAction.class); 43 } 44 45 protected boolean asynchronous() { 46 return false; 47 } 48 } 49 | Popular Tags |