Package org.eclipse.osgi.framework.adaptor

Examples of org.eclipse.osgi.framework.adaptor.BundleClassLoader.listResources()


        return null;
      @SuppressWarnings("unchecked")
      Collection<String> result = Collections.EMPTY_LIST;
      BundleClassLoader bcl = getBundleClassLoader();
      if (bcl != null)
        result = bcl.listResources(path, filePattern, options);
      return Collections.unmodifiableCollection(result);
    }

    public String toString() {
      return BundleDescriptionImpl.this.toString();
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.