⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 subscriberroottreenode.java

📁 一个类似于openJMS分布在ObjectWeb之下的JMS消息中间件。
💻 JAVA
字号:
package org.objectweb.joram.client.tools.admin;import java.util.*;import javax.swing.*;import javax.swing.tree.*;class SubscriberRootTreeNode extends DefaultMutableTreeNode    implements AdminTreeNode {  public SubscriberRootTreeNode() {    super("Subscribers");  }    /**   * Returns descriptive text about the node.   */  public String getDescription() {    return "";  }    /**   * Returns a context menu for the node, or null if   * no context menu should be created.   */  public JPopupMenu getContextMenu() {    return null;  }    /**   * Gets the image icon for this node, or null to use   * the default.   */  public ImageIcon getImageIcon() {    return null;  }    /**   * Refreshes the node.   * @param treeModel the model that the node is contained in.   */  public void refresh(DefaultTreeModel treeModel) {      }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -