1 19 20 29 30 package org.netbeans.modules.web.monitor.client; 31 32 import org.openide.nodes.Children; 33 import org.openide.nodes.AbstractNode; 34 import org.openide.util.actions.*; 35 import org.openide.util.NbBundle; 36 37 public class NavigateNode extends AbstractNode { 38 39 public NavigateNode(Children ch) { 40 super(ch); 41 setIconBaseWithExtension("org/netbeans/modules/web/monitor/client/icons/folder.gif"); setName(NbBundle.getBundle(NavigateNode.class).getString("MON_All_transactions_2")); 43 } 45 46 53 54 protected SystemAction[] createActions () { 55 return new SystemAction[] { 56 SystemAction.get(ReloadAction.class), 57 SystemAction.get(DeleteAllAction.class), 58 null, 59 SystemAction.get(SortAction.class), 60 null, 61 SystemAction.get(ShowTimestampAction.class), 62 }; 63 } 64 65 } | Popular Tags |