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

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


      // lets choose the root container
      node = editor.getModel();
    }

    if (node != null && node instanceof Route) {
      DeleteRouteAction deleteRouteAction = new DeleteRouteAction();
      deleteRouteAction.setSelectedRoute((RouteSupport)node);
      menu.add(deleteRouteAction);
    }

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

TOP

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

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.