Package org.apache.ivy.osgi.updatesite.xml

Examples of org.apache.ivy.osgi.updatesite.xml.EclipsePlugin


        b.setDescription(feature.getDescription());
        b.setLicense(feature.getLicense());

        Iterator itPlugins = feature.getPlugins().iterator();
        while (itPlugins.hasNext()) {
            EclipsePlugin plugin = (EclipsePlugin) itPlugins.next();
            BundleRequirement r = new BundleRequirement(BundleInfo.BUNDLE_TYPE, plugin.getId(),
                    new VersionRange(plugin.getVersion()), null);
            b.addRequirement(r);
        }

        Iterator itRequires = feature.getRequires().iterator();
        while (itRequires.hasNext()) {
View Full Code Here

TOP

Related Classes of org.apache.ivy.osgi.updatesite.xml.EclipsePlugin

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.