Package org.apache.felix.sigil.common.model.osgi.IPackageImport

Examples of org.apache.felix.sigil.common.model.osgi.IPackageImport.OSGiImport


     * get external resolve= attribute from internal PackageImport flags. This
     * is called from BldConverter.setBundle().
     */
    public static String getResolve(IPackageImport pi, boolean isDependency)
    {
        OSGiImport osgiImport = pi.getOSGiImport();
        String resolve = null;

        if (isDependency)
        {
            if (osgiImport.equals(OSGiImport.NEVER) || pi.isOptional())
                resolve = BldAttr.RESOLVE_COMPILE;
        }
        else
        {
            switch (osgiImport)
View Full Code Here

TOP

Related Classes of org.apache.felix.sigil.common.model.osgi.IPackageImport.OSGiImport

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.