@Incubating public interface ProblemBuilderDefiningLocation
Problem
instance builder requiring the specification of the problem location.Modifier and Type | Method | Description |
---|---|---|
ProblemBuilderDefiningType |
location(java.lang.String path,
java.lang.Integer line) |
Declares that this problem is in a file at a particular line.
|
ProblemBuilderDefiningType |
location(java.lang.String path,
java.lang.Integer line,
java.lang.Integer column) |
Declares that this problem is in a file at a particular line.
|
ProblemBuilderDefiningType |
noLocation() |
Declares that this problem has no associated location data.
|
ProblemBuilderDefiningType location(java.lang.String path, java.lang.Integer line)
path
- the file locationline
- the line numberProblemBuilderDefiningType location(java.lang.String path, java.lang.Integer line, java.lang.Integer column)
path
- the file locationline
- the line numbercolumn
- the column numberProblemBuilderDefiningType noLocation()