Examples of CamelContextNodeEditorInput


Examples of org.fusesource.ide.jmx.camel.editor.CamelContextNodeEditorInput

  public void editRoutes() {
    IWorkbenchPage page = Workbenches.getActiveWorkbenchPage();
    if (page == null) {
      Activator.getLogger().warning("No active page!");
    } else {
      IEditorInput input = new CamelContextNodeEditorInput(this);
      try {
        page.openEditor(input, CAMEL_EDITOR_ID, true);
      } catch (PartInitException e) {
        Activator.getLogger().warning("Could not open editor: " + CAMEL_EDITOR_ID + ". Reason: " + e, e);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.