// Tipo de Aluno (AFA, AM, ERASMUS, etc)
row.setCell(registration.getRegistrationProtocol() != null ? registration.getRegistrationProtocol().getCode() : "");
// Regime de Ingresso no Curso Actual (código)
Ingression ingression = sourceRegistration.getIngression();
if (ingression == null && sourceRegistration.getStudentCandidacy() != null) {
ingression = sourceRegistration.getStudentCandidacy().getIngression();
}
row.setCell(ingression != null ? ingression.getName() : "");
// Regime de Ingresso no Curso Actual (designação)
row.setCell(ingression != null ? ingression.getFullDescription() : "");
// estabelecimento do grau preced.: Instituição onde esteve
// inscrito mas não obteve grau, (e.g: transferencias, mudanças de
// curso...)
row.setCell(personalInformationBean.getPrecedentInstitution() != null ? personalInformationBean.getPrecedentInstitution()