ruta-ep-ide-ui/src/main/java/org/apache/uima/ruta/ide/RutaIdeUIPlugin.java [169:176]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public String pluginIdToJarPath(String pluginId) throws IOException {
    Bundle bundle = getBundle(pluginId);
    URL url = bundle.getEntry("/");
    if (url == null) {
      throw new IOException();
    }
    return FileLocator.toFileURL(url).getFile();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ruta-ep-ide/src/main/java/org/apache/uima/ruta/ide/RutaIdeCorePlugin.java [122:129]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public String pluginIdToJarPath(String pluginId) throws IOException {
    Bundle bundle = getBundle(pluginId);
    URL url = bundle.getEntry("/");
    if (url == null) {
      throw new IOException();
    }
    return FileLocator.toFileURL(url).getFile();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



