Problem Spec
Problem instance builder that is not capable of creating a new instances. An example of how to use the builder:
<problemReporter>.report(configurator -> configurator
.label("test problem")
.category("category", "subcategory")
.severity(Severity.ERROR)
.details("this is a test")
Content copied to clipboard
Functions
Link copied to clipboard
Specifies arbitrary data associated with this problem.
Link copied to clipboard
The long description of this problem.
Link copied to clipboard
Declares the documentation for this problem.
Link copied to clipboard
abstract fun fileLocation(path: String, @Nullable line: Integer, @Nullable column: Integer, @Nullable length: Integer): ProblemSpec
Declares that this problem is in a file with optional position and length.
Link copied to clipboard
Declares that this problem is emitted while applying a plugin.
Link copied to clipboard
Declares the severity of the problem.
Link copied to clipboard
The description of how to solve this problem.
Link copied to clipboard
Declares that this problem should automatically collect the location information based on the current stack trace.
Link copied to clipboard
The exception causing this problem.