Package org.eclipse.wst.jsdt.internal.core

Examples of org.eclipse.wst.jsdt.internal.core.JavaProject


    List<IClasspathEntry> rwList = new ArrayList<IClasspathEntry>();

    rwList.add(JavaCore.newContainerEntry(new Path(
        JavaRuntime.JRE_CONTAINER)));

    JavaProject javaProject = (JavaProject) JavaCore.create(project);
    javaProject.setRawClasspath(rwList.toArray(new IClasspathEntry[0]),
        new NullProgressMonitor());
  }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.jsdt.internal.core.JavaProject

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.