Package com.mountainminds.eclemma.internal.core

Examples of com.mountainminds.eclemma.internal.core.DefaultScopeFilter


      final ILaunchConfiguration configuration) throws CoreException {
    final Set<IPackageFragmentRoot> all = getOverallScope(configuration);
    final List<?> selection = configuration.getAttribute(
        ICoverageLaunchConfigurationConstants.ATTR_SCOPE_IDS, (List<?>) null);
    if (selection == null) {
      final DefaultScopeFilter filter = new DefaultScopeFilter(
          EclEmmaCorePlugin.getInstance().getPreferences());
      return filter.filter(all, configuration);
    } else {
      all.retainAll(readScope(selection));
      return all;
    }
  }
View Full Code Here


      final ILaunchConfiguration configuration) throws CoreException {
    final Set<IPackageFragmentRoot> all = getOverallScope(configuration);
    final List<?> selection = configuration.getAttribute(
        ICoverageLaunchConfigurationConstants.ATTR_SCOPE_IDS, (List<?>) null);
    if (selection == null) {
      final DefaultScopeFilter filter = new DefaultScopeFilter(
          EclEmmaCorePlugin.getInstance().getPreferences());
      return filter.filter(all, configuration);
    } else {
      all.retainAll(readScope(selection));
      return all;
    }
  }
View Full Code Here

TOP

Related Classes of com.mountainminds.eclemma.internal.core.DefaultScopeFilter

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.