| | |
| | | private static final Message LINE_BREAK= |
| | | Message.raw(" "+Constants.HTML_LINE_BREAK); |
| | | |
| | | private static final Message TAB = new MessageBuilder(SPACE) |
| | | .append(SPACE) |
| | | .append(SPACE) |
| | | .append(SPACE) |
| | | .append(SPACE) |
| | | .toMessage(); |
| | | |
| | | /** |
| | | * Returns the HTML representation of the text without providing any style. |
| | | * @param text the source text from which we want to get the HTML |
| | |
| | | */ |
| | | public Message getTab() |
| | | { |
| | | return new MessageBuilder(SPACE) |
| | | .append(SPACE) |
| | | .append(SPACE) |
| | | .append(SPACE) |
| | | .append(SPACE) |
| | | .toMessage(); |
| | | return TAB; |
| | | } |
| | | |
| | | /** |