*
* @return the text on the current line, without the line delimiters.
* @see SWTBotStyledText#getTextOnLine(int)
*/
public String getTextOnCurrentLine() {
final Position currentPosition = cursorPosition();
final int line = currentPosition.line;
return getTextOnLine(line);
}