Examples of InfoExecutionCourse


Examples of org.fenixedu.academic.dto.InfoExecutionCourse

                    executionDegree.getDegreeCurricularPlan().getExecutionCoursesByExecutionPeriodAndSemesterAndYear(
                            executionSemester, curricularYear, infoExecutionPeriod.getSemester());

            // For each execution course obtain curricular courses and exams
            for (ExecutionCourse executionCourse : executionCourses) {
                InfoExecutionCourse infoExecutionCourse = InfoExecutionCourse.newInfoFromDomain(executionCourse);
                infoExecutionCourse.setCurricularYear(curricularYear);

                List<InfoExam> associatedInfoExams =
                        obtainInfoExams(executionDegree, infoExecutionPeriod.getExternalId(), curricularYear, executionCourse);
                infoExecutionCourse.setFilteredAssociatedInfoExams(associatedInfoExams);

                result.add(infoExecutionCourse);
            }
        }
        return result;
View Full Code Here

Examples of org.fenixedu.academic.dto.InfoExecutionCourse

        executionCourse.editInformation(infoExecutionCourse.getNome(), infoExecutionCourse.getSigla(),
                infoExecutionCourse.getComment(), infoExecutionCourse.getAvailableGradeSubmission(),
                infoExecutionCourse.getEntryPhase());

        return new InfoExecutionCourse(executionCourse);
    }
View Full Code Here

Examples of org.fenixedu.academic.dto.InfoExecutionCourse

*/
public class ReadExecutionCourseWithShiftsAndCurricularCoursesByOID {

    @Atomic
    public static InfoExecutionCourse run(final String oid) {
        InfoExecutionCourse infoExecutionCourse = null;

        final ExecutionCourse executionCourse = FenixFramework.getDomainObject(oid);
        if (executionCourse != null) {
            infoExecutionCourse = InfoExecutionCourse.newInfoFromDomain(executionCourse);
        }
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.