Package org.sonar.iac.common.api.checks
Interface CheckContext
-
- All Known Implementing Classes:
ChecksVisitor.ContextAdapter
public interface CheckContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreportIssue(HasTextRange toHighlight, String message)voidreportIssue(HasTextRange toHighlight, String message, List<SecondaryLocation> secondaryLocations)voidreportIssue(HasTextRange toHighlight, String message, SecondaryLocation secondaryLocation)voidreportIssue(TextRange textRange, String message)
-
-
-
Method Detail
-
reportIssue
void reportIssue(HasTextRange toHighlight, String message)
-
reportIssue
void reportIssue(HasTextRange toHighlight, String message, SecondaryLocation secondaryLocation)
-
reportIssue
void reportIssue(HasTextRange toHighlight, String message, List<SecondaryLocation> secondaryLocations)
-
-