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.cloud | |
edu.umd.cs.findbugs.cloud.username | |
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.workflow |
Modifier and Type | Class and Description |
---|---|
class |
SortedBugCollection
An implementation of
BugCollection that keeps the BugInstances sorted
by class (using the native comparison ordering of BugInstance's compareTo()
method as a tie-breaker). |
Modifier and Type | Method and Description |
---|---|
BugCollection |
BugCollection.createEmptyCollectionWithMetadata()
Create a new empty BugCollection with the same metadata as this one.
|
BugCollection |
XDocsBugReporter.getBugCollection() |
BugCollection |
SortingBugReporter.getBugCollection() |
BugCollection |
PrintingBugReporter.getBugCollection() |
BugCollection |
EmacsBugReporter.getBugCollection() |
BugCollection |
DelegatingBugReporter.getBugCollection() |
BugCollection |
BugReporter.getBugCollection()
Get the bug collection (if any) associated with this bug reporter
|
BugCollection |
BugCollectionBugReporter.getBugCollection() |
BugCollection |
AddAnnotation.getBugCollection() |
Modifier and Type | Method and Description |
---|---|
int |
FuzzyBugComparator.compareClasses(BugCollection lhsCollection,
BugCollection rhsCollection,
ClassAnnotation lhsClass,
ClassAnnotation rhsClass) |
int |
FuzzyBugComparator.compareClassesByName(BugCollection lhsCollection,
BugCollection rhsCollection,
java.lang.String lhsClassName,
java.lang.String rhsClassName) |
int |
FuzzyBugComparator.compareMethods(BugCollection lhsCollection,
BugCollection rhsCollection,
MethodAnnotation lhsMethod,
MethodAnnotation rhsMethod) |
int |
FuzzyBugComparator.compareSourceLines(BugCollection lhsCollection,
BugCollection rhsCollection,
SourceLineAnnotation lhs,
SourceLineAnnotation rhs)
Compare source line annotations.
|
void |
ProjectStats.computeFileStats(BugCollection bugs) |
java.util.Map<java.lang.String,java.lang.String> |
ProjectStats.getFileHashes(BugCollection bugs) |
void |
FuzzyBugComparator.registerBugCollection(BugCollection bugCollection)
Register a BugCollection.
|
void |
IGuiCallback.registerCloud(Project project,
BugCollection collection,
Cloud cloud)
Called as soon as the cloud object is created, before it is initialized.
|
void |
CommandLineUiCallback.registerCloud(Project project,
BugCollection collection,
Cloud cloud) |
void |
QueryBugAnnotations.scan(BugCollection bugCollection,
java.lang.String filename)
Scan bug instances contained in given bug collection, reporting those
whose text annotations contain at least one of the keywords in the query.
|
void |
BugInstance.setAnnotationText(java.lang.String annotationText,
BugCollection bugCollection)
Set the user annotation text.
|
void |
BugInstance.setUserDesignationKey(java.lang.String key,
BugCollection bugCollection) |
void |
BugInstance.setUserDesignationKeyIndex(int index,
BugCollection bugCollection) |
static void |
BugRanker.trimToMaxRank(BugCollection origCollection,
int maxRank) |
void |
IGuiCallback.unregisterCloud(Project project,
BugCollection collection,
Cloud cloud) |
void |
CommandLineUiCallback.unregisterCloud(Project project,
BugCollection collection,
Cloud cloud) |
void |
Project.writeXML(java.io.File f,
BugCollection bugCollection) |
void |
BugInstance.writeXML(XMLOutput xmlOutput,
BugCollection bugCollection,
boolean addMessages) |
void |
Project.writeXML(XMLOutput xmlOutput,
java.io.File destination,
BugCollection bugCollection) |
Constructor and Description |
---|
AddAnnotation(BugCollection bugCollection,
java.lang.String annotation) |
AddMessages(BugCollection bugCollection,
org.dom4j.Document document)
Constructor.
|
SAXBugCollectionHandler(BugCollection bugCollection) |
SAXBugCollectionHandler(BugCollection bugCollection,
java.io.File base) |
Modifier and Type | Field and Description |
---|---|
protected BugCollection |
AbstractCloud.bugCollection |
Modifier and Type | Method and Description |
---|---|
BugCollection |
DoNothingCloud.getBugCollection() |
BugCollection |
Cloud.getBugCollection() |
BugCollection |
AbstractCloud.getBugCollection() |
Modifier and Type | Method and Description |
---|---|
static Cloud |
CloudFactory.createCloudWithoutInitializing(BugCollection bc) |
static CloudPlugin |
CloudFactory.getCloudPlugin(BugCollection bc) |
static Cloud |
CloudFactory.getPlainCloud(BugCollection bc) |
static Cloud |
CloudFactory.handleInitializationException(BugCollection bc,
CloudPlugin plugin,
java.lang.Throwable e) |
static void |
CloudFactory.initializeCloud(BugCollection bc,
Cloud cloud) |
Constructor and Description |
---|
AbstractCloud(CloudPlugin plugin,
BugCollection bugs,
java.util.Properties properties) |
BugCollectionStorageCloud(CloudPlugin plugin,
BugCollection bc,
java.util.Properties properties)
Constructor is not protected to allow
CloudFactory.createCloudWithoutInitializing() create a new instance of
this cloud
|
DoNothingCloud(BugCollection bc) |
DoNothingCloud(CloudPlugin plugin,
BugCollection bc,
java.util.Properties props)
Invoked via reflection
|
Modifier and Type | Method and Description |
---|---|
boolean |
WebCloudNameLookup.signIn(CloudPlugin plugin,
BugCollection bugCollection) |
boolean |
PromptForNameLookup.signIn(CloudPlugin plugin,
BugCollection bugCollection) |
boolean |
NoNameLookup.signIn(CloudPlugin plugin,
BugCollection bugCollection) |
boolean |
NameLookup.signIn(CloudPlugin plugin,
BugCollection bugCollection)
tries to obtain a user name.
|
boolean |
LocalNameLookup.signIn(CloudPlugin plugin,
BugCollection bugCollection) |
Modifier and Type | Field and Description |
---|---|
protected BugCollection |
CloudCommentsPane._bugCollection |
Modifier and Type | Method and Description |
---|---|
static BugCollection |
BugLoader.combineBugHistories()
TODO: This really needs to be rewritten such that they don't have to
choose ALL xmls in one fel swoop.
|
static BugCollection |
BugLoader.doAnalysis(Project p)
Does what it says it does, hit apple r (control r on pc) and the analysis
is redone using the current project
|
static BugCollection |
BugLoader.doAnalysis(Project p,
FindBugsProgress progressCallback)
Performs an analysis and returns the BugSet created
|
BugCollection |
MainFrame.getBugCollection() |
static BugCollection |
BugLoader.redoAnalysisKeepComments(Project p)
Does what it says it does, hit apple r (control r on pc) and the analysis
is redone using the current project
|
Modifier and Type | Method and Description |
---|---|
void |
AnalysisCallback.analysisFinished(BugCollection results) |
void |
MainFrameMenu.enableOrDisableItems(Project curProject,
BugCollection bugCollection) |
static void |
BugSaver.saveBugs(java.io.File out,
BugCollection data,
Project p) |
static void |
BugSaver.saveBugs(java.io.Writer out,
BugCollection data,
Project p) |
void |
CloudCommentsPane.setBugCollection(BugCollection bugCollection) |
Modifier and Type | Method and Description |
---|---|
BugCollection |
RegenerateClassFeatures.getBugCollection() |
Constructor and Description |
---|
MovedClassMap(BugCollection before,
BugCollection after) |
RegenerateClassFeatures(BugCollection bugCollection,
java.lang.String jarFile) |
Modifier and Type | Method and Description |
---|---|
BugCollection |
MergeSummarizeAndView.getAllBugs() |
BugCollection |
MergeSummarizeAndView.getScaryBugs() |
BugCollection |
Update.mergeCollections(BugCollection origCollection,
BugCollection newCollection,
boolean copyDeadBugs,
boolean incrementalAnalysis) |
Modifier and Type | Method and Description |
---|---|
static FileBugHash |
FileBugHash.compute(BugCollection origCollection) |
void |
TreemapVisualization.generateTreeMap(BugCollection bugCollection) |
BugCollection |
Update.mergeCollections(BugCollection origCollection,
BugCollection newCollection,
boolean copyDeadBugs,
boolean incrementalAnalysis) |
void |
Update.removeBaselineBugs(BugCollection baselineCollection,
BugCollection bugCollection) |
void |
TestingGround.setBugCollection(BugCollection bugCollection) |
void |
RebornIssues.setBugCollection(BugCollection bugCollection) |
void |
ObfuscateBugs.setBugCollection(BugCollection bugCollection) |
void |
Churn.setBugCollection(BugCollection bugCollection) |
Constructor and Description |
---|
Churn(BugCollection bugCollection) |
ObfuscateBugs(BugCollection bugCollection) |
RebornIssues(BugCollection bugCollection) |
TestingGround(BugCollection bugCollection) |
FindBugs™ is licenced under the LGPL. Copyright © 2006 University of Maryland.