Examples of installProjectFacet()


Examples of org.eclipse.wst.common.project.facet.core.IFacetedProject.installProjectFacet()

    facetedProject.setFixedProjectFacets(fixedFacets);

    // install the fixed facets
    facetedProject.installProjectFacet(coreFacet.getDefaultVersion(), null,
        monitor);
    facetedProject.installProjectFacet(convertToFacetVersion(phpVersion),
        null, monitor);
  }

  /**
   * Returns the faceted version of the core facet
View Full Code Here

Examples of org.eclipse.wst.common.project.facet.core.IFacetedProject.installProjectFacet()

      IProjectFacet symfonyFacet = ProjectFacetsManager.getProjectFacet(SymfonyFacetConstants.SYMFONY_COMPONENT);

      // install the fixed facets
      switch (symfonyVersion) {
      case Symfony2_1_9:
        facetedProject.installProjectFacet(
            symfonyFacet.getVersion(SymfonyFacetConstants.SYMFONY_COMPONENT_VERSION_2_1), symfonyFacet,
            monitor);
        break;
      case Symfony2_2_1:
        facetedProject.installProjectFacet(
View Full Code Here

Examples of org.eclipse.wst.common.project.facet.core.IFacetedProject.installProjectFacet()

        facetedProject.installProjectFacet(
            symfonyFacet.getVersion(SymfonyFacetConstants.SYMFONY_COMPONENT_VERSION_2_1), symfonyFacet,
            monitor);
        break;
      case Symfony2_2_1:
        facetedProject.installProjectFacet(
            symfonyFacet.getVersion(SymfonyFacetConstants.SYMFONY_COMPONENT_VERSION_2_2), symfonyFacet,
            monitor);
        break;
      default:
        break;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.