Package edu.umd.cs.findbugs.filter
Interface Matcher
-
- All Known Implementing Classes:
AndMatcher
,BugMatcher
,ClassMatcher
,ClassWarningSuppressor
,CompoundMatcher
,CompoundMatcher
,ConfidenceMatcher
,DeadBugFilter
,DesignationMatcher
,FieldMatcher
,FieldWarningSuppressor
,Filter
,FilterMatcher
,FirstVersionMatcher
,LastVersionMatcher
,LocalMatcher
,MethodMatcher
,MethodWarningSuppressor
,NotMatcher
,OrMatcher
,PackageWarningSuppressor
,ParameterWarningSuppressor
,PriorityMatcher
,RankMatcher
,SourceMatcher
,StackedFilterMatcher
,SuppressionMatcher
,SuppressionMatcher
,TypeMatcher
,WarningSuppressor
public interface Matcher
Match BugInstances for some feature.- Author:
- David Hovemeyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
match(BugInstance bugInstance)
Determine whether or not the given BugInstance has the feature this Matcher tests for.void
writeXML(XMLOutput xmlOutput, boolean disabled)
-
-
-
Method Detail
-
match
boolean match(BugInstance bugInstance)
Determine whether or not the given BugInstance has the feature this Matcher tests for.- Parameters:
bugInstance
- the BugInstance- Returns:
- true if the BugInstance matches, false if not
-
writeXML
void writeXML(XMLOutput xmlOutput, boolean disabled) throws java.io.IOException
- Throws:
java.io.IOException
-
-