Package org.jacoco.core.runtime

Examples of org.jacoco.core.runtime.WildcardMatcher


  private abstract static class PatternMatchingFilter implements IFilter {
    private WildcardMatcher matcher;

    public PatternMatchingFilter(String patternString) {
      matcher = new WildcardMatcher(patternString);
    }
View Full Code Here


      final AgentOptions options, final IExceptionLogger logger) {
    this.runtime = runtime;
    this.instrumenter = new Instrumenter(runtime);
    this.logger = logger;
    // Class names will be reported in VM notation:
    includes = new WildcardMatcher(
        toWildcard(toVMName(options.getIncludes())));
    excludes = new WildcardMatcher(
        toWildcard(toVMName(options.getExcludes())));
    exclClassloader = new WildcardMatcher(
        toWildcard(options.getExclClassloader()));
    classFileDumper = new ClassFileDumper(options.getClassDumpDir());
  }
View Full Code Here

   * @param includes
   *            includes pattern
   */
  public void setIncludes(final String includes) {
    this.includes = includes;
    this.includesMatcher = new WildcardMatcher(includes);
  }
View Full Code Here

   * @param excludes
   *            excludes patterns
   */
  public void setExcludes(final String excludes) {
    this.excludes = excludes;
    this.excludesMatcher = new WildcardMatcher(excludes);
  }
View Full Code Here

  public CoverageTransformer(final IRuntime runtime,
      final AgentOptions options, final IExceptionLogger logger) {
    this.instrumenter = new Instrumenter(runtime);
    this.logger = logger;
    // Class names will be reported in VM notation:
    includes = new WildcardMatcher(toVMName(options.getIncludes()));
    excludes = new WildcardMatcher(toVMName(options.getExcludes()));
    exclClassloader = new WildcardMatcher(options.getExclClassloader());
    classFileDumper = new ClassFileDumper(options.getClassDumpDir());
    includeBootstrapClasses = options.getInclBootstrapClasses();
  }
View Full Code Here

  private abstract static class PatternMatchingFilter implements IFilter {
    private WildcardMatcher matcher;

    public PatternMatchingFilter(String patternString) {
      matcher = new WildcardMatcher(patternString);
    }
View Full Code Here

TOP

Related Classes of org.jacoco.core.runtime.WildcardMatcher

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.