Package edu.umd.cs.findbugs.gui2
Class SuppressionMatcher
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- java.util.ArrayList<BugInstance>
-
- edu.umd.cs.findbugs.gui2.SuppressionMatcher
-
- All Implemented Interfaces:
Matcher,java.io.Serializable,java.lang.Cloneable,java.lang.Iterable<BugInstance>,java.util.Collection<BugInstance>,java.util.List<BugInstance>,java.util.RandomAccess
@Deprecated public class SuppressionMatcher extends java.util.ArrayList<BugInstance> implements Matcher
Deprecated.A list of all bugs to filter out, only we call it suppressing them- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SuppressionMatcher()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanadd(BugInstance bugInstance)Deprecated.booleanmatch(BugInstance bugInstance)Deprecated.Determine whether or not the given BugInstance has the feature this Matcher tests for.voidwriteXML(XMLOutput xmlOutput, boolean disabled)Deprecated.-
Methods inherited from class java.util.ArrayList
add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
-
-
-
-
Method Detail
-
match
public boolean match(BugInstance bugInstance)
Deprecated.Description copied from interface:MatcherDetermine whether or not the given BugInstance has the feature this Matcher tests for.
-
add
public boolean add(BugInstance bugInstance)
Deprecated.- Specified by:
addin interfacejava.util.Collection<BugInstance>- Specified by:
addin interfacejava.util.List<BugInstance>- Overrides:
addin classjava.util.ArrayList<BugInstance>
-
-