Examples of ChooseStudentCurricularPlanBean


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

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

*/
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
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.