Package org.sonar.api.batch.sensor.issue
Interface NewMessageFormatting
-
public interface NewMessageFormattingBuilder to create new MessageFormatting. Should not be implemented by client.- Since:
- 9.13
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NewMessageFormattingend(int index)NewMessageFormattingstart(int index)NewMessageFormattingtype(MessageFormatting.Type type)
-
-
-
Method Detail
-
start
NewMessageFormatting start(int index)
- Parameters:
index- The index of the first character in the string that will be formatted (inclusive)- Returns:
- builder object
-
end
NewMessageFormatting end(int index)
- Parameters:
index- The index at which formatting will stop (exclusive)- Returns:
- builder object
-
type
NewMessageFormatting type(MessageFormatting.Type type)
- Parameters:
type- Type of the text that will be formatted- Returns:
- builder object
-
-