java.lang.Object
edu.hm.hafner.analysis.IssueDifference
Computes old, new, and fixed issues based on the reports of two consecutive static analysis runs for the same
software artifact.
- Autor:
- Ullrich Hafner
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungIssueDifference(Report currentIssues, String referenceId, Report referenceIssues) Creates a new instance ofIssueDifference. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungReturns the fixed issues.Returns the new issues.Returns the outstanding issues.
-
Konstruktordetails
-
IssueDifference
Creates a new instance ofIssueDifference.- Parameter:
currentIssues- the issues of the current reportreferenceId- ID identifying the reference reportreferenceIssues- the issues of a previous report (reference)
-
-
Methodendetails
-
getOutstandingIssues
Returns the outstanding issues. I.e. all issues, that are part of the previous report and that are still part of the current report.- Gibt zurück:
- the outstanding issues
-
getNewIssues
Returns the new issues. I.e. all issues, that are part of the current report but that have not been shown up in the previous report.- Gibt zurück:
- the new issues
-
getFixedIssues
Returns the fixed issues. I.e. all issues, that are part of the previous report but that are not present in the current report anymore.- Gibt zurück:
- the fixed issues
-