// //////////////////////////////////////
// Identification in the UI
// //////////////////////////////////////
public String title() {
final TitleBuffer buf = new TitleBuffer();
buf.append(getDescription());
if (isComplete()) {
buf.append("- Completed!");
} else {
if (getDueBy() != null) {
buf.append(" due by", getDueBy());
}
}
return buf.toString();
}