Package uk.co.brunella.osgi.bdt.util

Examples of uk.co.brunella.osgi.bdt.util.ManifestAttributeParser


  private String fragmentHost;
  private VersionRange fragmentHostVersionRange;
 
  public BundleDescriptor(String bundleJarFileName, Manifest manifest) throws RuntimeException {
    this.bundleJarFileName = bundleJarFileName;
    ManifestAttributeParser parser = new ManifestAttributeParser(manifest);
    Map<String, AttributeElement[]> attributes = parser.parseAttributes(ATTRIBUTE_NAMES);

    setBundleSymbolicName(attributes);
    setBundleVersion(attributes);
    setBundleClassPath(attributes);
    setImportPackages(attributes);
View Full Code Here

TOP

Related Classes of uk.co.brunella.osgi.bdt.util.ManifestAttributeParser

Copyright © 2018 www.massapicom. 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.