CycleType cycleType = getRequestedCycle();
List<DegreeCurricularPlan> degreeCurricularPlansForYear =
getDegree().getDegreeCurricularPlansForYear(getConclusionYear());
if (degreeCurricularPlansForYear.size() == 1) {
DegreeCurricularPlan dcp = degreeCurricularPlansForYear.iterator().next();
CycleCourseGroup cycleCourseGroup = dcp.getCycleCourseGroup(cycleType);
if (cycleCourseGroup != null) {
return cycleCourseGroup.getGraduateTitle(getConclusionYear(), getLanguage());
}
}
StringBuilder result = new StringBuilder();
Degree degree = getDegree();