Examples of PhdThesisJuryElementBean


Examples of org.fenixedu.academic.domain.phd.thesis.PhdThesisJuryElementBean

        return mapping.findForward("manageThesisJuryElements");
    }

    public ActionForward prepareAddJuryElement(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        request.setAttribute("thesisJuryElementBean", new PhdThesisJuryElementBean(getProcess(request)));
        return mapping.findForward("addJuryElement");
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.thesis.PhdThesisJuryElementBean

    }

    public ActionForward prepareEditJuryElement(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {

        request.setAttribute("thesisJuryElementBean", new PhdThesisJuryElementBean(getProcess(request), getJuryElement(request)));
        return mapping.findForward("editJuryElement");
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.thesis.PhdThesisJuryElementBean

        return manageThesisJuryElements(mapping, actionForm, request, response);
    }

    public ActionForward prepareAddPresidentJuryElement(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
            HttpServletResponse response) {
        request.setAttribute("thesisJuryElementBean", new PhdThesisJuryElementBean(getProcess(request)));
        return mapping.findForward("addPresidentJuryElement");
    }
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.thesis.PhdThesisJuryElementBean

            return new DomainObjectKeyConverter();
        }

        @Override
        public Object provide(Object source, Object currentValue) {
            final PhdThesisJuryElementBean bean = (PhdThesisJuryElementBean) source;
            return bean.getExistingParticipants();
        }
View Full Code Here

Examples of org.fenixedu.academic.domain.phd.thesis.PhdThesisJuryElementBean

    }

    @Override
    protected PhdThesisProcess executeActivity(PhdThesisProcess process, User userView, Object object) {

        final PhdThesisJuryElementBean bean = (PhdThesisJuryElementBean) object;
        final ThesisJuryElement juryElement = bean.getJuryElement();

        if (process.getThesisJuryElementsSet().contains(juryElement)) {
            juryElement.edit(bean);
        }
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.