Package org.eclipse.pde.internal.core.target

Examples of org.eclipse.pde.internal.core.target.DirectoryBundleContainer


    public static List<IBundleContainer> getBundleContainers(final KarafPlatformModel karafPlatformModel) {
        final Collection<File> directories = KarafLaunchUtils.getJarDirectories(karafPlatformModel);

        final List<IBundleContainer> bundleContainers = new ArrayList<IBundleContainer>();
        for (final File dir : directories) {
            bundleContainers.add(new DirectoryBundleContainer(dir.getAbsolutePath()));
        }

        return bundleContainers;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.pde.internal.core.target.DirectoryBundleContainer

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.