Package edu.umd.cs.findbugs.workflow
Interface BugHistory.SetOperation
-
- Enclosing class:
- BugHistory
public static interface BugHistory.SetOperation
A set operation between two bug collections.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SortedBugCollection
perform(java.util.Set<BugInstance> result, SortedBugCollection origCollection, SortedBugCollection newCollection)
Perform the set operation.
-
-
-
Method Detail
-
perform
SortedBugCollection perform(java.util.Set<BugInstance> result, SortedBugCollection origCollection, SortedBugCollection newCollection)
Perform the set operation.- Parameters:
result
- Set to put the resulting BugInstances inorigCollection
- original BugCollectionnewCollection
- new BugCollection- Returns:
- the input bug collection the results are taken from
-
-