this.descriptionLabel.setText("<html>" + htmlString + "</html>");
this.typeLabel.setText("(tarefa)");
}
if (shortHandCompletion.getItem().getObject() instanceof ProjectTask) {
ProjectTask projectTask = (ProjectTask) shortHandCompletion.getItem().getObject();
String htmlString = projectTask.getOutput();
for (String matched : shortHandCompletion.getItem().getMatchedExpressions()) {
// System.out.println(matched);
htmlString = StringUtil.replaceFirst(htmlString, matched, "<b>" + matched + "</b>");
}