1 22 package org.objectweb.joram.client.tools.admin; 23 24 import java.util.*; 25 import javax.swing.*; 26 import javax.swing.tree.*; 27 28 class SubscriptionRootTreeNode extends DefaultMutableTreeNode 29 implements AdminTreeNode { 30 31 public SubscriptionRootTreeNode() { 32 super("Subscriptions"); 33 } 34 35 38 public String getDescription() { 39 return ""; 40 } 41 42 46 public JPopupMenu getContextMenu() { 47 return null; 48 } 49 50 54 public ImageIcon getImageIcon() { 55 return null; 56 } 57 58 62 public void refresh(DefaultTreeModel treeModel) { 63 64 } 65 } 66 | Popular Tags |