super.init(administrativeOffice, eventType, person, declarationRequest);
}
@Override
final public LabelFormatter getDescriptionForEntryType(EntryType entryType) {
final LabelFormatter labelFormatter = new LabelFormatter();
labelFormatter.appendLabel(entryType.name(), LabelFormatter.ENUMERATION_RESOURCES);
labelFormatter.appendLabel(" (");
labelFormatter.appendLabel(getDegree().getDegreeType().name(), LabelFormatter.ENUMERATION_RESOURCES);
labelFormatter.appendLabel(" ");
labelFormatter.appendLabel("label.in", LabelFormatter.APPLICATION_RESOURCES);
labelFormatter.appendLabel(" ");
labelFormatter.appendLabel(getDegree().getNameFor(getExecutionYear()).getContent());
labelFormatter.appendLabel(")");
if (getAcademicServiceRequest().getExecutionYear() != null) {
labelFormatter.appendLabel(" - " + getExecutionYear().getYear());
}
return labelFormatter;
}