Package org.eclipse.update.internal.configurator

Examples of org.eclipse.update.internal.configurator.FeatureEntry


          System.getProperty("osgi.configuration.area"));
      IBundleGroupProvider[] providers = Platform.getBundleGroupProviders();
      for(IBundleGroupProvider provider : providers){
        IBundleGroup[] groups = provider.getBundleGroups();
        for(IBundleGroup group : groups){
          FeatureEntry feature = (FeatureEntry)group;
          System.out.println("  Feature: " +
              feature.getIdentifier() + ' ' +
              feature.getVersion() + ' ' +
              feature.getSite().getResolvedURL());
        }
      }
      return IApplication.EXIT_OK;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.update.internal.configurator.FeatureEntry

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.