Class NoOpFindBugsProgress
java.lang.Object
edu.umd.cs.findbugs.NoOpFindBugsProgress
- All Implemented Interfaces:
IClassPathBuilderProgress, FindBugsProgress
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidReport that FindBugs has finished scanning an archive in order to add its classes to the repository.voidReport that FindBugs has finished analyzing a class.voidCalled to indicate that the per-class analysis is finished, and that the whole program analysis is taking place.voidpredictPassCount(int[] classesPerPass) Provide an array that predicts the number of classes in each passvoidreportNumberOfArchives(int numArchives) Report the total number of archives (Jar or zip files) that will be analyzed.voidstartAnalysis(int numClasses) Report that FindBugs has finished scanning the archives and will start analysing the classes contained therein.voidstartArchive(String name) Report that FindBugs has started scanning an archive in order to add its classes to the repository.
-
Constructor Details
-
NoOpFindBugsProgress
public NoOpFindBugsProgress()
-
-
Method Details
-
reportNumberOfArchives
public void reportNumberOfArchives(int numArchives) Description copied from interface:FindBugsProgressReport the total number of archives (Jar or zip files) that will be analyzed.- Specified by:
reportNumberOfArchivesin interfaceFindBugsProgress- Parameters:
numArchives- the number of archives
-
finishArchive
public void finishArchive()Description copied from interface:FindBugsProgressReport that FindBugs has finished scanning an archive in order to add its classes to the repository.- Specified by:
finishArchivein interfaceFindBugsProgress- Specified by:
finishArchivein interfaceIClassPathBuilderProgress
-
startAnalysis
public void startAnalysis(int numClasses) Description copied from interface:FindBugsProgressReport that FindBugs has finished scanning the archives and will start analysing the classes contained therein.- Specified by:
startAnalysisin interfaceFindBugsProgress- Parameters:
numClasses- number of classes found in all of the archives
-
finishClass
public void finishClass()Description copied from interface:FindBugsProgressReport that FindBugs has finished analyzing a class.- Specified by:
finishClassin interfaceFindBugsProgress
-
finishPerClassAnalysis
public void finishPerClassAnalysis()Description copied from interface:FindBugsProgressCalled to indicate that the per-class analysis is finished, and that the whole program analysis is taking place.- Specified by:
finishPerClassAnalysisin interfaceFindBugsProgress
-
predictPassCount
public void predictPassCount(int[] classesPerPass) Description copied from interface:FindBugsProgressProvide an array that predicts the number of classes in each pass- Specified by:
predictPassCountin interfaceFindBugsProgress- Parameters:
classesPerPass-
-
startArchive
Description copied from interface:FindBugsProgressReport that FindBugs has started scanning an archive in order to add its classes to the repository.- Specified by:
startArchivein interfaceFindBugsProgress- Specified by:
startArchivein interfaceIClassPathBuilderProgress
-