Examples of PhdStudyPlanEntryBean


Examples of org.fenixedu.academic.domain.phd.PhdStudyPlanEntryBean

    }

    public ActionForward prepareCreateStudyPlanEntry(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response) {

        request.setAttribute("studyPlanEntryBean", new PhdStudyPlanEntryBean(getProcess(request).getStudyPlan()));

        return mapping.findForward("createStudyPlanEntry");

    }
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.PhdStudyPlanEntryBean

public class CompetenceCourseForStudyPlanEntryProvider implements DataProvider {

    @Override
    public Object provide(Object source, Object current) {
        final PhdStudyPlanEntryBean bean = (PhdStudyPlanEntryBean) source;

        return bean.getDegree() != null ? bean.getDegree().getLastActiveDegreeCurricularPlan().getCompetenceCourses() : 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.