Interface SingleFileVerifier.Issue
-
- Enclosing interface:
- SingleFileVerifier
public static interface SingleFileVerifier.Issue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SingleFileVerifier.IssueaddSecondary(int line, int column, int endLine, int endColumn, String message)Add a secondary location with an optional messageSingleFileVerifier.IssuewithGap(Double gap)
-
-
-
Method Detail
-
withGap
SingleFileVerifier.Issue withGap(@Nullable Double gap)
- Parameters:
gap- Gap used for the computation of the effort (previously effortToFix)
-
addSecondary
SingleFileVerifier.Issue addSecondary(int line, int column, int endLine, int endColumn, @Nullable String message)
Add a secondary location with an optional message- Parameters:
line- , start at 1, line number of the first charactercolumn- , start at 1, column number of the first characterendLine- , start at 1, line number of the last character, if the location is on one line then endLine == lineendColumn- , start at 1, column number of the last character, if there's only one character then endColumn == columnmessage- optional message, can be null
-
-