Package org.eclipse.osgi.baseadaptor.loader

Examples of org.eclipse.osgi.baseadaptor.loader.ClasspathManager.initialize()


    }
    if (cp == null)
      cp = new String[0];
    // this is not optimized; degenerate case of someone calling getResource on an unresolved bundle!
    ClasspathManager cm = new ClasspathManager(this, cp, null);
    cm.initialize();
    Enumeration<URL> result = cm.findLocalResources(path);
    // no need to close ClassPathManager because the BundleFile objects are stored in the BaseData and closed on shutdown or uninstall
    return result;
  }
}
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.