Package com.dubture.symfony.core

Examples of com.dubture.symfony.core.SymfonyVersion


    final IPath sourcePath = firstPage.getSourcePath();
    final IPath containerPath = firstPage.getContainerPath();
    final IPath consolePath = firstPage.getConsolePath();
    final String projectName = firstPage.getProjectName();
    final PHPVersion phpVersion = firstPage.getPHPVersion();
    final SymfonyVersion symfonyVersion = firstPage.getSymfonyVersion();
   
    IRunnableWithProgress op = new IRunnableWithProgress() {
      @Override
      public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
        IWorkspace workspace = ResourcesPlugin.getWorkspace();
View Full Code Here


      new Path(SymfonyCoreConstants.CG_FIXTURE_PATTERN)
    });

        BuildPathManager.setExclusionPattern(getScriptProject(), sourceEntry);
        String version = ((SymfonyProjectWizardFirstPage)firstPage).getSymfonyVersion();
        SymfonyVersion symfonyVersion = SymfonyVersion.Symfony2_2_1;
        if (version.startsWith("v2.1")) {
          symfonyVersion = SymfonyVersion.Symfony2_1_9;
        }

        try {
View Full Code Here

TOP

Related Classes of com.dubture.symfony.core.SymfonyVersion

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.