Examples of FrameworkLogEntry


Examples of org.eclipse.osgi.framework.log.FrameworkLogEntry

    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();
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.