Package org.fenixedu.academic.domain.thesis

Examples of org.fenixedu.academic.domain.thesis.ThesisState


        Map<String, Collection<Thesis>> theses = new HashMap<String, Collection<Thesis>>();

        ThesisFilterBean bean = getFilterBean(request);

        ExecutionYear year = bean.getYear();
        ThesisState state = bean.getState();

        Collection<Degree> degrees = bean.getDegreeOptions();

        Degree degree = bean.getDegree();
        if (degree != null) {
View Full Code Here


        ThesisFilterBean bean = getRenderedObject("filter");

        if (bean == null) {
            bean = new ThesisFilterBean();

            ThesisState state = getCustomState(request);

            bean.setState(state == null ? ThesisState.EVALUATED : state);
            bean.setDegree(getCustomDegree(request));
            bean.setYear(getCustomExecutionYear(request));
        }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.thesis.ThesisState

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.