Examples of PhdStudyPlanBean


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

    }

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

        request.setAttribute("studyPlanBean", new PhdStudyPlanBean(getProcess(request)));

        return mapping.findForward("createStudyPlan");
    }
View Full Code Here

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

    }

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

        request.setAttribute("studyPlanBean", new PhdStudyPlanBean(getProcess(request).getStudyPlan()));
        return mapping.findForward("editStudyPlan");
    }
View Full Code Here

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

public class DegreesProviderForStudyPlan extends AbstractDomainObjectProvider {

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

        final SortedSet<Degree> result = new TreeSet<Degree>(Degree.COMPARATOR_BY_DEGREE_TYPE_AND_NAME_AND_ID);

        result.add(bean.getProcess().getPhdProgram().getDegree());
        result.add(Degree.readEmptyDegree());

        return result;
    }
View Full Code Here

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

        final PhdIndividualProgramProcessBean individualProcessBean = new PhdIndividualProgramProcessBean(individualProcess);
        individualProcessBean.setQualificationExamsPerformed(QualificationExamsResult.NO);
        individualProcessBean.setQualificationExamsRequired(QualificationExamsResult.NO);
        ExecuteProcessActivity.run(individualProcess, EditQualificationExams.class.getSimpleName(), individualProcessBean);

        final PhdStudyPlanBean planBean = new PhdStudyPlanBean(individualProcess);
        planBean.setExempted(true);
        ExecuteProcessActivity.run(individualProcess, AddStudyPlan.class.getSimpleName(), planBean);

        final PhdProgramCandidacyProcess candidacyProcess = individualProcess.getCandidacyProcess();
        final RegistrationFormalizationBean formalizationBean = new RegistrationFormalizationBean(candidacyProcess);
        formalizationBean.setWhenStartedStudies(getMostAccurateStartDevelopmentDate());
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.