Package edu.umd.cs.findbugs.gui2
Class CompoundMatcher
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<E>
-
- java.util.HashSet<Matcher>
-
- edu.umd.cs.findbugs.gui2.CompoundMatcher
-
- All Implemented Interfaces:
Matcher
,java.io.Serializable
,java.lang.Cloneable
,java.lang.Iterable<Matcher>
,java.util.Collection<Matcher>
,java.util.Set<Matcher>
@Deprecated public class CompoundMatcher extends java.util.HashSet<Matcher> implements Matcher
Deprecated.Holds a bunch of matchers, and only matches a bug if all the submatchers match it. Matchetymatch.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompoundMatcher()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
match(BugInstance bugInstance)
Deprecated.Determine whether or not the given BugInstance has the feature this Matcher tests for.void
writeXML(XMLOutput xmlOutput, boolean disabled)
Deprecated.-
Methods inherited from class java.util.HashSet
add, clear, clone, contains, isEmpty, iterator, remove, size, spliterator
-
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, retainAll, toArray, toArray, toString
-
-
-
-
Method Detail
-
match
public boolean match(BugInstance bugInstance)
Deprecated.Description copied from interface:Matcher
Determine whether or not the given BugInstance has the feature this Matcher tests for.
-
-