Examples of RootCourseGroup


Examples of org.fenixedu.academic.domain.degreeStructure.RootCourseGroup

                            final ExecutionDegree executionDegree = schoolClass.getExecutionDegree();
                            final DegreeCurricularPlan degreeCurricularPlan = executionDegree.getDegreeCurricularPlan();
                            degreeCurricularPlan.getName();
                            final Degree degree = degreeCurricularPlan.getDegree();
                            degree.getDegreeType();
                            final RootCourseGroup root = degreeCurricularPlan.getRoot();
                            load(root);
                        }
                        for (final Lesson lesson : shift.getAssociatedLessonsSet()) {
                            lesson.getBeginHourMinuteSecond();
                            for (OccupationPeriod period = lesson.getPeriod(); period != null; period = period.getNextPeriod()) {
View Full Code Here

Examples of org.fenixedu.academic.domain.degreeStructure.RootCourseGroup

        this.degreeCurricularPlan = degreeCurricularPlan;
    }

    public Set<Context> search() {
        Set<Context> result = new HashSet<Context>();
        RootCourseGroup root = getDegreeCurricularPlan().getRoot();
        searchRecursive(root, result);

        return result;
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.degreeStructure.RootCourseGroup

        this.degreeCurricularPlan = degreeCurricularPlan;
    }

    public Set<Context> search() {
        Set<Context> result = new HashSet<Context>();
        RootCourseGroup root = getDegreeCurricularPlan().getRoot();
        searchRecursive(root, result);

        return result;
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.degreeStructure.RootCourseGroup

    public void doForAllCurricularCourses(final CurricularCourseFunctor curricularCourseFunctor) {
        for (final CurricularCourse curricularCourse : super.getCurricularCoursesSet()) {
            curricularCourse.doForAllCurricularCourses(curricularCourseFunctor);
        }
        final RootCourseGroup rootCourseGroup = getRoot();
        if (rootCourseGroup != null) {
            rootCourseGroup.doForAllCurricularCourses(curricularCourseFunctor);
        }
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.degreeStructure.RootCourseGroup

        return getBranchesByType(branchType).isEmpty() ? false : true;
    }

    public Set<DegreeModule> getAllDegreeModules() {
        final Set<DegreeModule> degreeModules = new TreeSet<DegreeModule>(DegreeModule.COMPARATOR_BY_NAME);
        final RootCourseGroup rootCourseGroup = getRoot();
        if (rootCourseGroup != null) {
            rootCourseGroup.getAllDegreeModules(degreeModules);
        }
        degreeModules.addAll(super.getCurricularCoursesSet());
        return degreeModules;
    }
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.