Package org.fenixedu.academic.dto.student

Examples of org.fenixedu.academic.dto.student.ChooseStudentCurricularPlanBean


*/
public class StudentCurricularPlansProvider implements DataProvider {

    @Override
    public Object provide(Object source, Object currentValue) {
        ChooseStudentCurricularPlanBean bean = (ChooseStudentCurricularPlanBean) source;
        return bean.getRegistration() != null ? bean.getRegistration().getStudentCurricularPlansSet() : Collections.EMPTY_LIST;
    }
View Full Code Here


*/
public class RegistrationsProvider implements DataProvider {

    @Override
    public Object provide(Object source, Object currentValue) {
        ChooseStudentCurricularPlanBean bean = (ChooseStudentCurricularPlanBean) source;
        return bean.getStudent() != null ? bean.getStudent().getRegistrationsSet() : Collections.EMPTY_LIST;
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.dto.student.ChooseStudentCurricularPlanBean

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.