Package org.fenixedu.academic.domain.interfaces

Examples of org.fenixedu.academic.domain.interfaces.HasExecutionSemester


    @Override
    public Object provide(Object source, Object currentValue) {
        final List<ExecutionCourse> executionCourses = new ArrayList<ExecutionCourse>();

        final HasExecutionSemester hasExecutionSemester = (HasExecutionSemester) source;
        final ExecutionSemester executionPeriod = hasExecutionSemester.getExecutionPeriod();

        final HasExecutionDegree hasExecutionDegree = (HasExecutionDegree) source;
        final ExecutionDegree executionDegree = hasExecutionDegree.getExecutionDegree();
        final DegreeCurricularPlan degreeCurricularPlan = executionDegree.getDegreeCurricularPlan();
View Full Code Here


    @Override
    public Object provide(Object source, Object currentValue) {
        final List<ExecutionDegree> executionDegrees = new ArrayList<ExecutionDegree>();

        final HasExecutionSemester hasExecutionSemester = (HasExecutionSemester) source;
        final ExecutionSemester executionPeriod = hasExecutionSemester.getExecutionPeriod();
        if (executionPeriod != null) {
            final ExecutionYear executionYear = executionPeriod.getExecutionYear();
            executionDegrees.addAll(executionYear.getExecutionDegreesSet());
        }
View Full Code Here

    @Override
    public Object provide(Object source, Object currentValue) {
        final List<ExecutionDegree> executionDegrees = new ArrayList<ExecutionDegree>();

        final HasExecutionSemester hasExecutionSemester = (HasExecutionSemester) source;
        final ExecutionSemester executionPeriod = hasExecutionSemester.getExecutionPeriod();
        if (executionPeriod != null) {
            final ExecutionYear executionYear = executionPeriod.getExecutionYear();
            executionDegrees.addAll(executionYear.getExecutionDegreesSet());
        }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.interfaces.HasExecutionSemester

Copyright © 2018 www.massapicom. 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.