1 19 20 29 30 package org.netbeans.modules.web.monitor.client; 31 32 import org.openide.nodes.AbstractNode; 33 import org.openide.nodes.Children; 34 import org.openide.util.actions.*; 35 import org.openide.util.NbBundle; 36 37 39 40 public class CurrNode extends AbstractNode { 41 42 public CurrNode(Children ch) { 43 super(ch); 44 setIconBaseWithExtension("org/netbeans/modules/web/monitor/client/icons/folder.gif"); setName(NbBundle.getBundle(CurrNode.class).getString("MON_Current_Transactions_7")); 46 } 47 48 protected SystemAction[] createActions () { 49 return new SystemAction[] { 50 SystemAction.get(org.netbeans.modules.web.monitor.client.DeleteCurrentAction.class), 51 }; 52 } 53 } | Popular Tags |