Package org.apache.aries.subsystem.core.archive

Examples of org.apache.aries.subsystem.core.archive.ExportPackageHeader.toCapabilities()


  }
 
  private void computeOsgiWiringPackageCapabilities() {
    ExportPackageHeader eph = (ExportPackageHeader)manifest.getHeader(ExportPackageHeader.NAME);
    if (eph != null)
      capabilities.addAll(eph.toCapabilities(this));
  }
 
  private void computeOsgiWiringPackageRequirements() {
    ImportPackageHeader iph = (ImportPackageHeader)manifest.getHeader(ImportPackageHeader.NAME);
    if (iph != null)
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.