Examples of PHPCompositeSourceContainer


Examples of org.eclipse.php.internal.debug.core.sourcelookup.containers.PHPCompositeSourceContainer

        IPHPDebugConstants.PHP_Project, (String) null);
    if (projectName != null) {
      IProject project = ResourcesPlugin.getWorkspace().getRoot()
          .getProject(projectName);
      // Search in specific project only
      sourceContainer = new PHPCompositeSourceContainer(project,
          configuration);
    } else {
      // Search in the Workspace Root
      sourceContainer = new WorkspaceRootSourceContainer();
    }
View Full Code Here

Examples of org.eclipse.php.internal.debug.core.sourcelookup.containers.PHPCompositeSourceContainer

          IProject prj = res.getProject();
          PHPSourceLookupDirector dir = (PHPSourceLookupDirector) getLaunch()
              .getSourceLocator();
          // ISourceContainer[] containers = new ISourceContainer[]
          // {new ProjectSourceContainer(prj, false)};
          ISourceContainer[] containers = new ISourceContainer[] { new PHPCompositeSourceContainer(
              prj, null) };
          dir.setSourceContainers(containers);
        }
      } else {
        // either no file was found, or the user pressed the stop
View Full Code Here

Examples of org.eclipse.php.internal.debug.core.sourcelookup.containers.PHPCompositeSourceContainer

    return obj;
  }

  public ISourceContainer getSourceContainer(IProject resource,
      ILaunchConfiguration launchConfig) {
    return new PHPCompositeSourceContainer(resource, launchConfig);
  }
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.