Interface SettingsProblemCollector
-
public interface SettingsProblemCollectorCollects problems that are encountered during settings building.- Author:
- Benjamin Bentmann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(SettingsProblem.Severity severity, java.lang.String message, int line, int column, java.lang.Exception cause)Adds the specified problem.
-
-
-
Method Detail
-
add
void add(SettingsProblem.Severity severity, java.lang.String message, int line, int column, java.lang.Exception cause)
Adds the specified problem.- Parameters:
severity- The severity of the problem, must not benull.message- The detail message of the problem, may benull.line- The one-based index of the line containing the problem or-1if unknown.column- The one-based index of the column containing the problem or-1if unknown.cause- The cause of the problem, may benull.
-
-