Examples of StudentEquivalencyPlanEntryCreator


Examples of org.fenixedu.academic.ui.struts.action.coordinator.StudentEquivalencyPlanEntryCreator

public class OriginDegreeModuleForStudentEquivalencyPlanEntryCreatorProvider implements DataProvider {

    @Override
    public Object provide(Object source, Object currentValue) {
        final StudentEquivalencyPlanEntryCreator studentEquivalencyPlanEntryCreator = (StudentEquivalencyPlanEntryCreator) source;
        final StudentCurricularPlanEquivalencePlan studentCurricularPlanEquivalencePlan =
                studentEquivalencyPlanEntryCreator.getStudentCurricularPlanEquivalencePlan();
        final StudentCurricularPlan studentCurricularPlan = studentCurricularPlanEquivalencePlan.getOldStudentCurricularPlan();
        final Set<DegreeModule> degreeModules = studentCurricularPlan.getAllDegreeModules();
        return degreeModules;
    }
View Full Code Here

Examples of org.fenixedu.academic.ui.struts.action.coordinator.StudentEquivalencyPlanEntryCreator

public class DestinationDegreeModuleForStudentEquivalencyPlanEntryCreatorProvider implements DataProvider {

    @Override
    public Object provide(Object source, Object currentValue) {
        final StudentEquivalencyPlanEntryCreator studentEquivalencyPlanEntryCreator = (StudentEquivalencyPlanEntryCreator) source;
        final DegreeCurricularPlanEquivalencePlan equivalencePlan =
                studentEquivalencyPlanEntryCreator.getDegreeCurricularPlanEquivalencePlan();
        final DegreeCurricularPlan degreeCurricularPlan = equivalencePlan.getDegreeCurricularPlan();
        final Set<DegreeModule> degreeModules = degreeCurricularPlan.getAllDegreeModules();
        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.