Package org.eclim.plugin.jdt.project.classpath

Examples of org.eclim.plugin.jdt.project.classpath.Parser


  protected IClasspathEntry[] mergeWithBuildfile(
      IJavaProject project, String buildfile)
    throws Exception
  {
    String filename = FileUtils.getBaseName(buildfile);
    Parser parser = PARSERS.get(filename);
    String var = parser.getClasspathVar();
    Dependency[] dependencies = parser.parse(buildfile);

    IWorkspaceRoot root = project.getProject().getWorkspace().getRoot();
    ArrayList<IClasspathEntry> results = new ArrayList<IClasspathEntry>();

    // load the results with all the non library entries.
View Full Code Here

TOP

Related Classes of org.eclim.plugin.jdt.project.classpath.Parser

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.