Use an HTML widget:
titleLabel = new HTML(SafeHtmlUtils.htmlEscape(ticket.getTicketType().getName())
+ " - <span style='color: red'><<"
+ SafeHtmlUtils.htmlEscape(art)
+ ">></span>");
To make it slightly more readable, I'd use a SafeHtmlTemplates (and as a bonus, it'll check your HTML syntax, and automatically htmlEscape your strings so you don't risk to miss one, so it's safer):
interface Template extends SafeHtmlTemplates {
@Template("{0} - <span style='color: red'><<{1}>></span>")
SafeHtml title(String ticketTypeName, String art);
}
static final Template TEMPLATE = GWT.create(Template.class)
...
titleLabel = new HTML(TEMPLATE.title(ticket.getTicketType().getName(), art));
I'd also replace the style='color: red' with a class='{2}' and a CssResource, but that's just a bonus, and mostly a detail.