Package org.fusesource.ide.camel.editor.handlers

Examples of org.fusesource.ide.camel.editor.handlers.DeleteNodeAction


        factory.fillMenu(editor, subMenu, node);
      }
    });
    // add the delete item
    if (node != null && node instanceof Route == false) {
      DeleteNodeAction deleteNodeAction = new DeleteNodeAction();
      deleteNodeAction.setSelectedNode(node);
      menu.add(deleteNodeAction);
    }

    // add a separator
    menu.add(new Separator());
View Full Code Here

TOP

Related Classes of org.fusesource.ide.camel.editor.handlers.DeleteNodeAction

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.