Interface AnalysisBuildResult
- All Known Subinterfaces:
- StaticAnalysisRun
- All Known Implementing Classes:
- AnalysisResult,- CompositeBuildResult
public interface AnalysisBuildResult
Provides statistics for the results of a static analysis run.
- 
Method SummaryModifier and TypeMethodDescriptionintReturns the number of fixed issues in this analysis run.intReturns the number of new issues in this analysis run.intgetNewSizeOf(edu.hm.hafner.analysis.Severity severity) Returns the new number of issues in this analysis run that have the specifiedSeverity.Returns the number of issues in this analysis run, mapped by their origin.Returns the total number of issues (by severity, new, total, fixed and delta) in a build.intReturns the total number of issues in this analysis run.intgetTotalSizeOf(edu.hm.hafner.analysis.Severity severity) Returns the total number of issues in this analysis run that have the specifiedSeverity.
- 
Method Details- 
getSizePerOriginReturns the number of issues in this analysis run, mapped by their origin. The origin is the tool that created the report.- Returns:
- number of issues per origin
 
- 
getFixedSizeint getFixedSize()Returns the number of fixed issues in this analysis run.- Returns:
- number of fixed issues
 
- 
getTotalSizeint getTotalSize()Returns the total number of issues in this analysis run.- Returns:
- total number of issues
 
- 
getTotalSizeOfint getTotalSizeOf(edu.hm.hafner.analysis.Severity severity) Returns the total number of issues in this analysis run that have the specifiedSeverity.- Parameters:
- severity- the severity of the issues to match
- Returns:
- total number of issues
 
- 
getNewSizeint getNewSize()Returns the number of new issues in this analysis run.- Returns:
- number of new issues
 
- 
getNewSizeOfint getNewSizeOf(edu.hm.hafner.analysis.Severity severity) Returns the new number of issues in this analysis run that have the specifiedSeverity.- Parameters:
- severity- the severity of the issues to match
- Returns:
- total number of issues
 
- 
getTotalsIssuesStatistics getTotals()Returns the total number of issues (by severity, new, total, fixed and delta) in a build.- Returns:
- the totals
 
 
-