Uses of Interface
edu.umd.cs.findbugs.filter.Matcher

Packages that use Matcher
edu.umd.cs.findbugs Main package for the FindBugs application - contains the engine class (FindBugs), the object model classes for bug instances (BugInstance, BugAnnotation), and other miscellany. 
edu.umd.cs.findbugs.filter   
 

Uses of Matcher in edu.umd.cs.findbugs
 

Classes in edu.umd.cs.findbugs that implement Matcher
 class ClassWarningSuppressor
           
 class FieldWarningSuppressor
           
 class MethodWarningSuppressor
           
 class PackageWarningSuppressor
           
 class SuppressionMatcher
           
 class WarningSuppressor
           
 

Constructors in edu.umd.cs.findbugs with parameters of type Matcher
FilterBugReporter(BugReporter realBugReporter, Matcher filter, boolean include)
           
 

Uses of Matcher in edu.umd.cs.findbugs.filter
 

Classes in edu.umd.cs.findbugs.filter that implement Matcher
 class AndMatcher
           
 class BugCodeMatcher
          Match BugInstances having one of a particular set of abbreviations.
 class BugPatternMatcher
          Matcher class to check whether or not BugInstances have one of a particular set of bug pattern types.
 class ClassMatcher
           
 class ClassRegexMatcher
           
 class CompoundMatcher
           
 class Filter
          Filter to match a subset of BugInstances.
 class MethodMatcher
           
 class OrMatcher
           
 class PriorityMatcher
          Matcher to select BugInstances with a particular priority.
 

Methods in edu.umd.cs.findbugs.filter that return types with arguments of type Matcher
 java.util.Iterator<Matcher> CompoundMatcher.childIterator()
           
 

Methods in edu.umd.cs.findbugs.filter with parameters of type Matcher
 void CompoundMatcher.addChild(Matcher child)