aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.core/src/org/jacoco/core/matcher/ClassnameMatcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.jacoco.core/src/org/jacoco/core/matcher/ClassnameMatcher.java')
-rw-r--r--org.jacoco.core/src/org/jacoco/core/matcher/ClassnameMatcher.java80
1 files changed, 0 insertions, 80 deletions
diff --git a/org.jacoco.core/src/org/jacoco/core/matcher/ClassnameMatcher.java b/org.jacoco.core/src/org/jacoco/core/matcher/ClassnameMatcher.java
deleted file mode 100644
index 939bd5fe..00000000
--- a/org.jacoco.core/src/org/jacoco/core/matcher/ClassnameMatcher.java
+++ /dev/null
@@ -1,80 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2009, 2017 Mountainminds GmbH & Co. KG and Contributors
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Jeffry Gaston - initial API and implementation
- *
- *******************************************************************************/
-
-package org.jacoco.core.matcher;
-
-import java.util.List;
-
-import org.objectweb.asm.ClassReader;
-
-/**
- * A ClassnameMatcher matches ClassReader objects based on their class name
- */
-public class ClassnameMatcher implements Predicate<ClassReader> {
- private IncludeExcludeMatcher<String> matcher = new IncludeExcludeMatcher<String>();
-
- /**
- * Includes the given pattern from the matches of this matcher
- * @param pattern to include
- * @return this object (for chaining)
- */
- public ClassnameMatcher include(String pattern) {
- matcher.include(new WildcardMatcher(pattern));
- return this;
- }
-
- /**
- * Adds the given patterns as inclusions for this matcher
- * @param patterns patterns to include
- * @return this object (for chaining)
- */
- public ClassnameMatcher include(List<String> patterns) {
- for (String pattern : patterns) {
- include(pattern);
- }
- return this;
- }
-
- /**
- * As the given pattern as an exclusion for this matcher
- * @param pattern pattern to exclude
- * @return this object (for chaining)
- */
- public ClassnameMatcher exclude(String pattern) {
- matcher.exclude(new WildcardMatcher(pattern));
- return this;
- }
-
- /**
- * As the given patterns as exclusions for this matcher
- * @param patterns patterns to include
- * @return this object (for chaining)
- */
- public ClassnameMatcher exclude(List<String> patterns) {
- for (String pattern : patterns) {
- exclude(pattern);
- }
- return this;
- }
-
-
- /**
- * Tells whether this matcher matches this class reader
- * @param classReader the reader to match
- * @return whether this matcher matches
- */
- @Override
- public boolean apply(ClassReader classReader) {
- return matcher.apply(classReader.getClassName().replaceAll("/", "."));
- }
-
-}