Package org.eclipse.php.internal.core.project

Examples of org.eclipse.php.internal.core.project.PHPNature


  /*
   * Do the actual modifications on the project
   */
  private void modifyProject(IProject project) throws CoreException,
      ModelException {
    final PHPNature phpNature = new PHPNature();

    // add the required builders and build paths as defined in the new PHP
    // nature
    phpNature.setProject(project);
    phpNature.configure();

    IScriptProject scriptProject = DLTKCore.create(project);
    // merge the project build path with the old include path
    IBuildpathEntry[] existingPath = scriptProject.getRawBuildpath();

View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.project.PHPNature

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.