Package org.fenixedu.academic.domain

Examples of org.fenixedu.academic.domain.EquivalencePlan


    public ActionForward showTable(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        request.setAttribute("viewTable", Boolean.TRUE);
        final DegreeModule degreeModule = getDegreeModule(request);
        if (degreeModule != null) {
            final EquivalencePlan equivalencePlan = getEquivalencePlan(request);
            final Set<EquivalencePlanEntry> equivalencePlanEntries =
                    degreeModule.getNewDegreeModuleEquivalencePlanEntries(equivalencePlan);
            request.setAttribute("equivalencePlanEntries", equivalencePlanEntries);
        }
        return mapping.findForward("showPlan");
View Full Code Here


    }

    public ActionForward prepareAddEquivalency(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        EquivalencePlanEntryCreator equivalencePlanEntryCreator = getRenderedObject();
        final EquivalencePlan equivalencePlan;
        if (equivalencePlanEntryCreator == null) {
            equivalencePlan = getEquivalencePlan(request);
            final DegreeModule degreeModule = getDegreeModule(request);
            equivalencePlanEntryCreator = new EquivalencePlanEntryCreator(equivalencePlan);
            equivalencePlanEntryCreator.setDestinationDegreeModuleToAdd(degreeModule);
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.EquivalencePlan

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.