Class FileIssues
- java.lang.Object
-
- org.sonarsource.analyzer.commons.checks.verifier.internal.FileIssues
-
public class FileIssues extends Object
-
-
Field Summary
Fields Modifier and Type Field Description org.sonarsource.analyzer.commons.checks.verifier.internal.TestFiletestFile
-
Constructor Summary
Constructors Constructor Description FileIssues(org.sonarsource.analyzer.commons.checks.verifier.internal.TestFile testFile, List<Comment> comments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddActualIssue(int line, String message, PrimaryLocation preciseLocation)voidaddActualIssue(int line, String message, PrimaryLocation preciseLocation, Double effortToFix)Reportreport()
-
-
-
Method Detail
-
addActualIssue
public void addActualIssue(int line, String message, @Nullable PrimaryLocation preciseLocation)- Parameters:
line- of the issue, start at 1, same as TokenLocation#startLine()
-
addActualIssue
public void addActualIssue(int line, String message, @Nullable PrimaryLocation preciseLocation, @Nullable Double effortToFix)- Parameters:
line- of the issue, start at 1, same as TokenLocation#startLine()
-
report
public Report report()
-
-