Package edu.umd.cs.findbugs
Interface FindBugsProgress
-
- All Superinterfaces:
IClassPathBuilderProgress
- All Known Implementing Classes:
AnalyzingDialog,NoOpFindBugsProgress,TextUIProgressCallback
public interface FindBugsProgress extends IClassPathBuilderProgress
A callback that may be installed in a FindBugs instance to asynchronously keep track of its progress.- Author:
- David Hovemeyer
- See Also:
FindBugs
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfinishArchive()Report that FindBugs has finished scanning an archive in order to add its classes to the repository.voidfinishClass()Report that FindBugs has finished analyzing a class.voidfinishPerClassAnalysis()Called 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(java.lang.String name)Report that FindBugs has started scanning an archive in order to add its classes to the repository.
-
-
-
Method Detail
-
reportNumberOfArchives
void reportNumberOfArchives(int numArchives)
Report the total number of archives (Jar or zip files) that will be analyzed.- Parameters:
numArchives- the number of archives
-
startArchive
void startArchive(java.lang.String name)
Report that FindBugs has started scanning an archive in order to add its classes to the repository.- Specified by:
startArchivein interfaceIClassPathBuilderProgress
-
finishArchive
void finishArchive()
Report that FindBugs has finished scanning an archive in order to add its classes to the repository.- Specified by:
finishArchivein interfaceIClassPathBuilderProgress
-
predictPassCount
void predictPassCount(int[] classesPerPass)
Provide an array that predicts the number of classes in each pass- Parameters:
classesPerPass-
-
startAnalysis
void startAnalysis(int numClasses)
Report that FindBugs has finished scanning the archives and will start analysing the classes contained therein.- Parameters:
numClasses- number of classes found in all of the archives
-
finishClass
void finishClass()
Report that FindBugs has finished analyzing a class.
-
finishPerClassAnalysis
void finishPerClassAnalysis()
Called to indicate that the per-class analysis is finished, and that the whole program analysis is taking place.
-
-