.isEmpty(this.area));
}
private void checkAddressInformationForDislocatedStudents(final List<LabelFormatter> result) {
if (isAnySchoolTimeAddressInformationFilled() && !this.dislocatedFromPermanentResidence) {
result.add(new LabelFormatter()
.appendLabel(
"error.candidacy.workflow.ResidenceInformationForm.only.dislocated.students.should.fill.school.time.address.information",
"application"));
}
if (this.dislocatedFromPermanentResidence) {
if (!isSchoolTimeRequiredInformationAddressFilled()) {
result.add(new LabelFormatter()
.appendLabel(
"error.candidacy.workflow.ResidenceInformationForm.address.information.is.required.for.dislocated.students",
"application"));
} else {
if (isAnyFilled(this.schoolTimeAddress, this.schoolTimeAreaCode, this.schoolTimeAreaOfAreaCode,
this.schoolTimeArea, this.schoolTimeParishOfResidence)
&& isAnyEmpty(this.schoolTimeAddress, this.schoolTimeAreaCode, this.schoolTimeAreaOfAreaCode,
this.schoolTimeArea, this.schoolTimeParishOfResidence)) {
result.add(new LabelFormatter()
.appendLabel(
"error.candidacy.workflow.ResidenceInformationForm.school.time.address.must.be.filled.completly.otherwise.fill.minimun.required",
"application"));
}
}