📄 openjmsdestination.java
字号:
/** * Redistribution and use of this software and associated documentation * ("Software"), with or without modification, are permitted provided * that the following conditions are met: * * 1. Redistributions of source code must retain copyright * statements and notices. Redistributions must also contain a * copy of this document. * * 2. Redistributions in binary form must reproduce the * above copyright notice, this list of conditions and the * following disclaimer in the documentation and/or other * materials provided with the distribution. * * 3. The name "Exolab" must not be used to endorse or promote * products derived from this Software without prior written * permission of Exoffice Technologies. For written permission, * please contact info@exolab.org. * * 4. Products derived from this Software may not be called "Exolab" * nor may "Exolab" appear in their names without prior written * permission of Exoffice Technologies. Exolab is a registered * trademark of Exoffice Technologies. * * 5. Due credit should be given to the Exolab Project * (http://www.exolab.org/). * * THIS SOFTWARE IS PROVIDED BY EXOFFICE TECHNOLOGIES AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * EXOFFICE TECHNOLOGIES OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * * Copyright 2000 (C) Exoffice Technologies Inc. All Rights Reserved. * * $Id: OpenJMSDestination.java,v 1.1 2004/11/26 01:51:15 tanderson Exp $ * * Date Author Changes * $Date jimm Created */package org.exolab.jms.tools.admin;import java.awt.Rectangle;import java.text.SimpleDateFormat;import javax.swing.JPopupMenu;import javax.swing.JTree;import javax.swing.tree.DefaultMutableTreeNode;import javax.swing.tree.DefaultTreeModel;/** * This is the base class for all destination nodes. A destination is either * a queue or a topic. * * @version $Revision: 1.1 $ $Date: 2004/11/26 01:51:15 $ * @author <a href="mailto:mourikis@exolab.org">Jim Mourikis</a> */abstract public class OpenJMSDestination extends DefaultMutableTreeNode implements OpenJMSNode { // The QueueTopicName protected String destinationName_; // Does this queue topic have any registered consumers protected boolean isLeaf_; // Whether this node has been opened and explored already. protected boolean isExplored_ = false; // The popup menu for destination protected JPopupMenu commands_ = null; // A flag indicating if the menu has been created yet. protected boolean commandsCreated_ = false; // A date time formatter. static protected SimpleDateFormat dateFormat_; // A reference to the tree this node belongs to. static protected JTree tree_ = null; /** * The constructor gets its unique name for this queue/topic and a * reference to its parent tree. * * <P>If this is the first queue/topic call, the menu for all queue/topics * is created. * * @param destinationName This queue/topic name. * @param tree The parent tree this queue/topic belongs to. * */ public OpenJMSDestination(String destinationName, JTree tree) { destinationName_ = destinationName; isLeaf_ = false; if (!commandsCreated_) { tree_ = tree; createCommands(); commandsCreated_ = true; dateFormat_ = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss"); dateFormat_.setLenient(false); } } /** * Create the menu for all queue/topics and set up the Action events for * each menu item. Since menus are shared, the callbacks called are * static. Once a menu is slected, the slected node can be determined * from the parent object. * */ abstract protected void createCommands(); /** * Children are allowed for all queue/topics * * @return boolean Always returns true. * */ public boolean getAllowsChildren() { return true; } /** * Queue/Topics are leaves iff they have no consumers registered against * them. * * @return boolean true if no consumers are registered. * */ public boolean isLeaf() { return isLeaf_; } /** * This node has been right clicked. The locations of this node is given * by the loc object. Use this location to popup the queue/topic message * menu. * * @param The location of this Consumer node. * */ public void displayCommands(Rectangle loc) { double x; double y; x = loc.getX(); y = loc.getY(); y += loc.getHeight(); commands_.show(tree_, (int) x, (int) y); } /** * The unique name of this queue/topic. * * @return String the queue/topic name. * */ public String toString() { return destinationName_; } /** * This node has changed. Inform the parent tree that it needs to be * re-drawn. * */ protected void refresh() { DefaultTreeModel model = (DefaultTreeModel) tree_.getModel(); model.nodeStructureChanged((DefaultMutableTreeNode) this); } /** * Get the particular instance of the queue/topic that has been selected. * * @return OpenJMSDestination the instance selected. * */ static protected OpenJMSDestination getInstanceSelected() { Object loc = tree_.getLastSelectedPathComponent(); return (OpenJMSDestination) loc; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -