Uses of Interface
edu.umd.cs.findbugs.BugCollection
-
Packages that use BugCollection Package Description edu.umd.cs.findbugs Main package for the FindBugs application - contains the engine class (FindBugs), the object model classes for bug instances (BugInstance,BugAnnotation), and other miscellany.edu.umd.cs.findbugs.detect edu.umd.cs.findbugs.gui2 edu.umd.cs.findbugs.model Eventually, all model classes (BugInstance, BugCollection, etc.) should go in this package.edu.umd.cs.findbugs.sarif The package providing aBugReporterimplementation which produces report in SARIF format.edu.umd.cs.findbugs.workflow -
-
Uses of BugCollection in edu.umd.cs.findbugs
Classes in edu.umd.cs.findbugs that implement BugCollection Modifier and Type Class Description classSortedBugCollectionAn implementation ofBugCollectionthat keeps the BugInstances sorted by class (using the native comparison ordering of BugInstance's compareTo() method as a tie-breaker).Fields in edu.umd.cs.findbugs declared as BugCollection Modifier and Type Field Description private BugCollectionAddMessages. bugCollectionprivate BugCollectionSAXBugCollectionHandler. bugCollectionFields in edu.umd.cs.findbugs with type parameters of type BugCollection Modifier and Type Field Description private java.util.IdentityHashMap<BugInstance,BugCollection>FuzzyBugComparator. bugCollectionMapKeep track of which BugCollections the various BugInstances have come from.Methods in edu.umd.cs.findbugs that return BugCollection Modifier and Type Method Description BugCollectionBugCollection. createEmptyCollectionWithMetadata()Create a new empty BugCollection with the same metadata as this one.BugCollectionBugCollectionBugReporter. getBugCollection()BugCollectionBugReportDispatcher. getBugCollection()BugCollectionBugReporter. getBugCollection()Get the bug collection (if any) associated with this bug reporterBugCollectionDelegatingBugReporter. getBugCollection()BugCollectionEmacsBugReporter. getBugCollection()BugCollectionPrintingBugReporter. getBugCollection()BugCollectionSortingBugReporter. getBugCollection()BugCollectionSynchronizedBugReporter. getBugCollection()BugCollectionXDocsBugReporter. getBugCollection()Methods in edu.umd.cs.findbugs with parameters of type BugCollection Modifier and Type Method Description intFuzzyBugComparator. compareClasses(BugCollection lhsCollection, BugCollection rhsCollection, ClassAnnotation lhsClass, ClassAnnotation rhsClass)intFuzzyBugComparator. compareClassesByName(BugCollection lhsCollection, BugCollection rhsCollection, java.lang.String lhsClassName, java.lang.String rhsClassName)intFuzzyBugComparator. compareMethods(BugCollection lhsCollection, BugCollection rhsCollection, MethodAnnotation lhsMethod, MethodAnnotation rhsMethod)intFuzzyBugComparator. compareSourceLines(BugCollection lhsCollection, BugCollection rhsCollection, SourceLineAnnotation lhs, SourceLineAnnotation rhs)Compare source line annotations.voidProjectStats. computeFileStats(BugCollection bugs)java.util.Map<java.lang.String,java.lang.String>ProjectStats. getFileHashes(BugCollection bugs)voidFuzzyBugComparator. registerBugCollection(BugCollection bugCollection)Register a BugCollection.static voidBugRanker. trimToMaxRank(BugCollection origCollection, int maxRank)voidBugInstance. writeXML(XMLOutput xmlOutput, BugCollection bugCollection, boolean addMessages)voidProject. writeXML(XMLOutput xmlOutput, java.io.File destination, BugCollection bugCollection)voidProject. writeXML(java.io.File f, BugCollection bugCollection)Constructors in edu.umd.cs.findbugs with parameters of type BugCollection Constructor Description AddMessages(BugCollection bugCollection, org.dom4j.Document document)Constructor.SAXBugCollectionHandler(BugCollection bugCollection)SAXBugCollectionHandler(BugCollection bugCollection, java.io.File base)SAXBugCollectionHandler(java.lang.String topLevelName, BugCollection bugCollection, Project project, java.io.File base) -
Uses of BugCollection in edu.umd.cs.findbugs.detect
Fields in edu.umd.cs.findbugs.detect declared as BugCollection Modifier and Type Field Description private BugCollectionCheckExpectedWarnings. bugCollectionDeprecated. -
Uses of BugCollection in edu.umd.cs.findbugs.gui2
Fields in edu.umd.cs.findbugs.gui2 declared as BugCollection Modifier and Type Field Description private BugCollectionMainFrame. bugCollection(package private) BugCollectionBugLoader.RedoAnalysisCallback. justAnalyzedMethods in edu.umd.cs.findbugs.gui2 that return BugCollection Modifier and Type Method Description static BugCollectionBugLoader. combineBugHistories()TODO: This really needs to be rewritten such that they don't have to choose ALL xmls in one fel swoop.static BugCollectionBugLoader. doAnalysis(Project p)Does what it says it does, hit apple r (control r on pc) and the analysis is redone using the current projectstatic BugCollectionBugLoader. doAnalysis(Project p, FindBugsProgress progressCallback)Performs an analysis and returns the BugSet created(package private) BugCollectionBugLoader.RedoAnalysisCallback. getBugCollection()BugCollectionMainFrame. getBugCollection()static BugCollectionBugLoader. redoAnalysisKeepComments(Project p)Does what it says it does, hit apple r (control r on pc) and the analysis is redone using the current projectMethods in edu.umd.cs.findbugs.gui2 with parameters of type BugCollection Modifier and Type Method Description (package private) static voidBugLoader. addDeadBugMatcher(BugCollection bugCollection)voidAnalysisCallback. analysisFinished(BugCollection results)voidBugLoader.RedoAnalysisCallback. analysisFinished(BugCollection b)voidMainFrameMenu. enableOrDisableItems(Project curProject, BugCollection bugCollection)static voidBugSaver. saveBugs(java.io.File out, BugCollection data, Project p)static voidBugSaver. saveBugs(java.io.Writer out, BugCollection data, Project p)(package private) voidMainFrame. setBugCollection(BugCollection bugCollection)private voidMainFrame. setProjectAndBugCollection(Project project, BugCollection bugCollection)(package private) voidMainFrame. setProjectAndBugCollectionInSwingThread(Project project, BugCollection bc)(package private) voidMainFrame. updateProjectAndBugCollection(BugCollection bugCollection)Constructors in edu.umd.cs.findbugs.gui2 with parameters of type BugCollection Constructor Description BugSet(BugCollection bugCollection) -
Uses of BugCollection in edu.umd.cs.findbugs.model
Fields in edu.umd.cs.findbugs.model declared as BugCollection Modifier and Type Field Description private BugCollectionMovedClassMap. afterprivate BugCollectionMovedClassMap. beforeprivate BugCollectionRegenerateClassFeatures. bugCollectionMethods in edu.umd.cs.findbugs.model that return BugCollection Modifier and Type Method Description BugCollectionRegenerateClassFeatures. getBugCollection()Methods in edu.umd.cs.findbugs.model with parameters of type BugCollection Modifier and Type Method Description private java.util.Set<java.lang.String>MovedClassMap. buildClassSet(BugCollection bugCollection)Find set of classes referenced in given BugCollection.Constructors in edu.umd.cs.findbugs.model with parameters of type BugCollection Constructor Description MovedClassMap(BugCollection before, BugCollection after)RegenerateClassFeatures(BugCollection bugCollection, java.lang.String jarFile) -
Uses of BugCollection in edu.umd.cs.findbugs.sarif
Constructors in edu.umd.cs.findbugs.sarif with parameters of type BugCollection Constructor Description BugCollectionAnalyser(BugCollection bugCollection) -
Uses of BugCollection in edu.umd.cs.findbugs.workflow
Fields in edu.umd.cs.findbugs.workflow declared as BugCollection Modifier and Type Field Description (package private) BugCollectionChurn. bugCollection(package private) BugCollectionObfuscateBugs. bugCollection(package private) BugCollectionRebornIssues. bugCollection(package private) BugCollectionTestingGround. bugCollectionMethods in edu.umd.cs.findbugs.workflow that return BugCollection Modifier and Type Method Description BugCollectionMergeSummarizeAndView. getAllBugs()BugCollectionMergeSummarizeAndView. getScaryBugs()BugCollectionUpdate. mergeCollections(BugCollection origCollection, BugCollection newCollection, boolean copyDeadBugs, boolean incrementalAnalysis)Methods in edu.umd.cs.findbugs.workflow with parameters of type BugCollection Modifier and Type Method Description (package private) booleanFilter.FilterCommandLine. accept(BugCollection collection, BugInstance bug)(package private) voidFilter.FilterCommandLine. adjustFilter(Project project, BugCollection collection)static FileBugHashFileBugHash. compute(BugCollection origCollection)private voidUpdate. discardUnwantedBugs(BugCollection newCollection)(package private) booleanFilter.FilterCommandLine. evaluate(BugCollection collection, BugInstance bug)voidTreemapVisualization. generateTreeMap(BugCollection bugCollection)static longFilter.FilterCommandLine. getVersionNum(BugCollection collection, java.lang.String val, boolean roundToLaterVersion)private voidUpdate. matchBugs(BugCollection origCollection, BugCollection newCollection)private voidUpdate. matchBugs(java.util.Comparator<BugInstance> bugInstanceComparator, BugCollection origCollection, BugCollection newCollection)private voidUpdate. matchBugs(java.util.Comparator<BugInstance> bugInstanceComparator, BugCollection origCollection, BugCollection newCollection, Update.MatchOldBugs matchOld)BugCollectionUpdate. mergeCollections(BugCollection origCollection, BugCollection newCollection, boolean copyDeadBugs, boolean incrementalAnalysis)voidUpdate. removeBaselineBugs(BugCollection baselineCollection, BugCollection bugCollection)voidChurn. setBugCollection(BugCollection bugCollection)voidObfuscateBugs. setBugCollection(BugCollection bugCollection)voidRebornIssues. setBugCollection(BugCollection bugCollection)voidTestingGround. setBugCollection(BugCollection bugCollection)(package private) java.util.HashSet<java.lang.String>Update. sourceFilesInCollection(BugCollection collection)Constructors in edu.umd.cs.findbugs.workflow with parameters of type BugCollection Constructor Description Churn(BugCollection bugCollection)FileBugHash(BugCollection bugs)ObfuscateBugs(BugCollection bugCollection)RebornIssues(BugCollection bugCollection)TestingGround(BugCollection bugCollection)
-