Package org.apache.uima.ruta.ide.ui.editor

Examples of org.apache.uima.ruta.ide.ui.editor.RutaEditor


    IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
    IWorkspace workspace = ResourcesPlugin.getWorkspace();
    IFile file = workspace.getRoot().getFileForLocation(resultPath);
    try {
      IEditorPart openEditor = page.openEditor(new FileEditorInput(file), "org.apache.uima.ruta.ide.ui.editor.RutaEditor");
      RutaEditor tme = (RutaEditor) openEditor;
      tme.highlightElement(id);
    } catch (PartInitException e) {
      RutaAddonsPlugin.error(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.uima.ruta.ide.ui.editor.RutaEditor

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.