Interface EndOfAnalysis
Common interface for providing callbacks that are triggered at the end of a module's analysis, after all files have been scanned.
Warning: keeping state between files can lead to memory leaks. Implement with care.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
endOfAnalysis
(ModuleScannerContext context) A method called when all files in the module have been processed.
-
Method Details
-
endOfAnalysis
A method called when all files in the module have been processed.- Parameters:
context
- ModuleScannerContext that can be used to get module information or report issues at project level.
-