Examples of CurriculumValidationEvaluationPhase


Examples of org.fenixedu.academic.domain.curriculum.CurriculumValidationEvaluationPhase

            markSheetList.add(new MarkSheetEnrolmentEvaluationBean(enrolment, executionSemester,
                    EnrolmentEvaluationType.IMPROVEMENT, null));

            for (String[] element : TYPE_AND_PHASE) {
                EnrolmentEvaluationType type = EnrolmentEvaluationType.valueOf(element[0]);
                CurriculumValidationEvaluationPhase phase =
                        element[1] != null ? CurriculumValidationEvaluationPhase.valueOf(element[1]) : null;
                EnrolmentEvaluation evaluation = enrolment.getLatestEnrolmentEvaluationByTypeAndPhase(type, phase);
                if (evaluation != null) {
                    logger.info(String.format("%s[%s][%s] State: %s", evaluation.getEnrolment().getName().getContent(), type,
                            phase, evaluation.getEnrolmentEvaluationState().toString()));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.