Package net.sourceforge.cruisecontrol.gui.configuration.tree.nodes

Examples of net.sourceforge.cruisecontrol.gui.configuration.tree.nodes.ContextMenuActions


     *
     * @param tree The ConfigTree to handle context menus for
     */
    public ContextMenuHandler(ConfigTree tree) {
        this.tree = tree;
        al = new ContextMenuActions(tree);
        popup = new JPopupMenu();
        popup.setInvoker(tree);
        deleteNode = new JMenuItem("Delete");
        deleteNode.addActionListener(al);
        tree.addMouseListener(ma);
View Full Code Here

TOP

Related Classes of net.sourceforge.cruisecontrol.gui.configuration.tree.nodes.ContextMenuActions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.