Date termin = l.getTermin();
boolean faellig = (termin.before(new Date()) && !l.ausgefuehrt());
item.setFont(faellig ? Font.BOLD.getSWTFont() : Font.DEFAULT.getSWTFont());
if (l.hasWarnings())
item.setForeground(Color.ERROR.getSWTColor());
else if (l.ausgefuehrt())
item.setForeground(Color.COMMENT.getSWTColor());
// Checken, ob der Auftrag einen Reminder hat oder ob es ein geclonter Auftrag ist
HibiscusDBObject o = (HibiscusDBObject) l;
String uuid = MetaKey.REMINDER_UUID.get(o);