Community
Participate
Working Groups
if ("jar".equalsIgnoreCase(basePath.getFileExtension())) { //$NON-NLS-1$
path = basePath.toOSString();
} else {
path = basePath.append(libraryName).toString();
Path libraryPath = new Path(libraryName);
if (libraryPath.isAbsolute())
path = libraryPath.toOSString();
else
path = basePath.append(libraryPath).toString();
}
path = generator.replaceVariables(path, pluginId == null ? false : generator.getCompiledElements().contains(pluginId));
String secondaryPath = null;