ZipFile file = null;
try {
file = new ZipFile(jarFile);
} catch (IOException e) {
String message = NLS.bind(EclipseAdaptorMsg.ECLIPSE_CONVERTER_PLUGIN_LIBRARY_IGNORED, jarFile, pluginInfo.getUniqueId());
adaptor.getFrameworkLog().log(new FrameworkLogEntry(FrameworkAdaptor.FRAMEWORK_SYMBOLICNAME, FrameworkLogEntry.ERROR, 0, message, 0, e, null));
return names;
}
//Run through the entries
for (Enumeration entriesEnum = file.entries(); entriesEnum.hasMoreElements();) {
ZipEntry entry = (ZipEntry) entriesEnum.nextElement();