Package org.fenixedu.academic.domain.candidacyProcess.standalone

Examples of org.fenixedu.academic.domain.candidacyProcess.standalone.StandaloneIndividualCandidacyProcess$CancelCandidacy


    @Override
    protected List<IndividualCandidacyProcess> getChildProcesses(CandidacyProcess process, HttpServletRequest request) {
        final DegreeCurricularPlan degreeCurricularPlan = getDegreeCurricularPlan(request);
        final List<IndividualCandidacyProcess> result = new ArrayList(super.getChildProcesses(process, request));
        for (final Iterator<IndividualCandidacyProcess> i = result.iterator(); i.hasNext();) {
            final StandaloneIndividualCandidacyProcess individualCandidacyProcess =
                    (StandaloneIndividualCandidacyProcess) i.next();
            if (!matchesDegree(degreeCurricularPlan, individualCandidacyProcess)) {
                i.remove();
            }
        }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.candidacyProcess.standalone.StandaloneIndividualCandidacyProcess$CancelCandidacy

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.