Package edu.umd.cs.findbugs.filter
Class TypeMatcher
- java.lang.Object
-
- edu.umd.cs.findbugs.filter.TypeMatcher
-
-
Field Summary
Fields Modifier and Type Field Description private NameMatch
descriptor
private java.lang.String
role
private java.lang.String
typeParameters
-
Constructor Summary
Constructors Constructor Description TypeMatcher(java.lang.String descriptor, java.lang.String role, java.lang.String typeParameters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
match(BugInstance bugInstance)
Determine whether or not the given BugInstance has the feature this Matcher tests for.java.lang.String
toString()
void
writeXML(XMLOutput xmlOutput, boolean disabled)
-
-
-
Field Detail
-
descriptor
private final NameMatch descriptor
-
role
private final java.lang.String role
-
typeParameters
private final java.lang.String typeParameters
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
match
public boolean match(BugInstance bugInstance)
Description copied from interface:Matcher
Determine whether or not the given BugInstance has the feature this Matcher tests for.
-
-