Package org.sonar.api.batch.sensor.issue
Interface MessageFormatting
-
public interface MessageFormattingRepresents the data of the formatted part of the text in the issue message- Since:
- 9.13
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMessageFormatting.Type
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intend()The index of the last character in the string that will be formattedintstart()The index of the first character in the string that will be formattedMessageFormatting.Typetype()Type of the text that will be formatted
-
-
-
Method Detail
-
start
int start()
The index of the first character in the string that will be formatted
-
end
int end()
The index of the last character in the string that will be formatted
-
type
MessageFormatting.Type type()
Type of the text that will be formatted
-
-