Uses of Interface
edu.umd.cs.findbugs.filter.Matcher
-
Packages that use Matcher Package Description 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 edu.umd.cs.findbugs.gui2 edu.umd.cs.findbugs.workflow -
-
Uses of Matcher in edu.umd.cs.findbugs
Classes in edu.umd.cs.findbugs that implement Matcher Modifier and Type Class Description class
ClassWarningSuppressor
class
FieldWarningSuppressor
class
MethodWarningSuppressor
class
PackageWarningSuppressor
class
ParameterWarningSuppressor
class
SuppressionMatcher
class
WarningSuppressor
Fields in edu.umd.cs.findbugs declared as Matcher Modifier and Type Field Description private Matcher
FilterBugReporter. filter
Methods in edu.umd.cs.findbugs with parameters of type Matcher Modifier and Type Method Description private void
SAXBugCollectionHandler. addMatcher(Matcher m)
Constructors in edu.umd.cs.findbugs with parameters of type Matcher Constructor Description 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 Modifier and Type Class Description class
AndMatcher
class
AnnotationMatcher
class
BugMatcher
Match bug instances having one of given codes or patterns.class
ClassMatcher
class
CompoundMatcher
class
ConfidenceMatcher
Matcher to select BugInstances with a particular confidence.class
FieldMatcher
class
Filter
Filter to match a subset of BugInstances.class
FirstVersionMatcher
Matcher to select BugInstances with a particular first version.class
LastVersionMatcher
Matcher to select BugInstances with a particular last version.class
LocalMatcher
class
MethodMatcher
class
NotMatcher
class
OrMatcher
class
PriorityMatcher
Matcher to select BugInstances with a particular priority.class
RankMatcher
Matcher to select BugInstances with a particular rank or higher.class
SourceMatcher
class
TypeMatcher
Fields in edu.umd.cs.findbugs.filter with type parameters of type Matcher Modifier and Type Field Description protected java.util.LinkedHashSet<Matcher>
CompoundMatcher. children
private java.util.IdentityHashMap<Matcher,java.lang.Boolean>
Filter. disabled
Methods in edu.umd.cs.findbugs.filter that return Matcher Modifier and Type Method Description Matcher
NotMatcher. originalMatcher()
Methods in edu.umd.cs.findbugs.filter that return types with arguments of type Matcher Modifier and Type Method Description java.util.Iterator<Matcher>
CompoundMatcher. childIterator()
java.util.Collection<Matcher>
CompoundMatcher. getChildren()
Methods in edu.umd.cs.findbugs.filter with parameters of type Matcher Modifier and Type Method Description void
CompoundMatcher. addChild(Matcher child)
void
Filter. addChild(Matcher child)
boolean
Filter. contains(Matcher child)
void
Filter. disable(Matcher m)
void
Filter. enable(Matcher m)
boolean
Filter. isEnabled(Matcher m)
protected void
CompoundMatcher. removeChild(Matcher child)
void
Filter. removeChild(Matcher child)
void
Filter. setEnabled(Matcher m, boolean value)
void
Filter. softAdd(Matcher child)
Add if not present, but do not enable if already present and disabled -
Uses of Matcher in edu.umd.cs.findbugs.gui2
Classes in edu.umd.cs.findbugs.gui2 that implement Matcher Modifier and Type Class Description class
CompoundMatcher
Deprecated.class
DeadBugFilter
class
FilterMatcher
Deprecated.class
StackedFilterMatcher
Deprecated.class
SuppressionMatcher
Deprecated.Fields in edu.umd.cs.findbugs.gui2 declared as Matcher Modifier and Type Field Description (package private) Matcher
PreferencesFrame.MatchBox. m
Methods in edu.umd.cs.findbugs.gui2 that return Matcher Modifier and Type Method Description Matcher
BugAspects. getMatcher()
(package private) Matcher
PreferencesFrame.MatchBox. getMatcher()
static Matcher
FilterFactory. invertMatcher(Matcher originalMatcher)
static Matcher
FilterFactory. makeAndMatcher(java.util.Collection<BugAspects.SortableValue> sortables)
private static Matcher
FilterFactory. makeMatcher(BugAspects.SortableValue sv)
private static Matcher
FilterFactory. makeMatcher(Sortables s, BugInstance bug)
private static Matcher
FilterFactory. makeMatcher(java.util.Collection<BugAspects.SortableValue> sortables, boolean andOr)
static Matcher
FilterFactory. makeMatcher(java.util.Collection<Sortables> sortables, BugInstance bug)
Matcher
FilterFromBugPicker. makeMatcherFromSelection()
static Matcher
FilterFactory. makeOrMatcher(java.util.Collection<BugAspects.SortableValue> sortables)
Methods in edu.umd.cs.findbugs.gui2 with parameters of type Matcher Modifier and Type Method Description void
ApplyNewFilter. fromMatcher(Matcher matcher)
BugSet
BugSet. getBugsMatchingFilter(Matcher m)
static Matcher
FilterFactory. invertMatcher(Matcher originalMatcher)
Constructors in edu.umd.cs.findbugs.gui2 with parameters of type Matcher Constructor Description MatchBox(java.lang.String text, Matcher m)
-
Uses of Matcher in edu.umd.cs.findbugs.workflow
Fields in edu.umd.cs.findbugs.workflow with type parameters of type Matcher Modifier and Type Field Description private java.util.List<Matcher>
Filter.FilterCommandLine. excludeFilter
private java.util.List<Matcher>
Filter.FilterCommandLine. includeFilter
-