Package org.fenixedu.academic.domain.phd

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


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

Related Classes of org.fenixedu.academic.domain.phd.PhdStudyPlanEntryBean

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.