Package org.eclipse.pde.core.build

Examples of org.eclipse.pde.core.build.IBuildEntry


    }
  }

  private void addSecondaryDependencies(BundleDescription desc, HashSet<BundleDescription> added, ArrayList<IClasspathEntry> entries) {
    try {
      IBuildEntry entry = fBuild.getEntry(IBuildEntry.SECONDARY_DEPENDENCIES);
      if (entry != null) {
        String[] tokens = entry.getTokens();
        for (int i = 0; i < tokens.length; i++) {
          String pluginId = tokens[i];
          // Get PluginModelBase first to resolve system.bundle entry if it exists
          IPluginModelBase model = PluginRegistry.findModel(pluginId);
          if (model != null) {
View Full Code Here

TOP

Related Classes of org.eclipse.pde.core.build.IBuildEntry

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.