Package com.mountainminds.eclemma.core.launching

Examples of com.mountainminds.eclemma.core.launching.ICoverageLauncher


   * @return descriptors for all class files
   *  
   * @throws CoreException
   */
  public static IClassFiles[] getClassFiles(ILaunchConfiguration configuration, boolean includebinaries) throws CoreException {
    ICoverageLauncher launcher = (ICoverageLauncher)
        configuration.getType().getDelegate(LAUNCH_MODE);
    return launcher.getClassFiles(configuration, includebinaries);
  }
View Full Code Here


   *
   * @throws CoreException
   */
  public static IClassFiles[] getClassFiles(ILaunchConfiguration configuration,
      boolean includebinaries) throws CoreException {
    ICoverageLauncher launcher = (ICoverageLauncher) configuration.getType()
        .getDelegate(LAUNCH_MODE);
    return launcher.getClassFiles(configuration, includebinaries);
  }
View Full Code Here

   * @return descriptors for all class files
   *  
   * @throws CoreException
   */
  public static IClassFiles[] getClassFiles(ILaunchConfiguration configuration, boolean includebinaries) throws CoreException {
    ICoverageLauncher launcher = (ICoverageLauncher)
        configuration.getType().getDelegate(LAUNCH_MODE);
    return launcher.getClassFiles(configuration, includebinaries);
  }
View Full Code Here

   *
   * @return overall scope
   */
  public static Set<IPackageFragmentRoot> getOverallScope(
      ILaunchConfiguration configuration) throws CoreException {
    ICoverageLauncher launcher = (ICoverageLauncher) configuration.getType()
        .getDelegates(Collections.singleton(CoverageTools.LAUNCH_MODE))[0]
        .getDelegate();
    return launcher.getOverallScope(configuration);
  }
View Full Code Here

   *
   * @return overall scope
   */
  public static Set<IPackageFragmentRoot> getOverallScope(
      ILaunchConfiguration configuration) throws CoreException {
    ICoverageLauncher launcher = (ICoverageLauncher) configuration.getType()
        .getDelegates(Collections.singleton(CoverageTools.LAUNCH_MODE))[0]
        .getDelegate();
    return launcher.getOverallScope(configuration);
  }
View Full Code Here

TOP

Related Classes of com.mountainminds.eclemma.core.launching.ICoverageLauncher

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.