Examples of ExecutionSemester


Examples of org.fenixedu.academic.domain.ExecutionSemester

    public Object provide(Object source, Object obj) {
        final ManageEnrolmentsBean bean = (ManageEnrolmentsBean) source;

        final List<ExecutionSemester> result = new ArrayList<ExecutionSemester>();

        ExecutionSemester each = bean.getProcess().getExecutionYear().getFirstExecutionPeriod();
        while (each != null) {
            result.add(each);
            each = each.getNextExecutionPeriod();
        }

        Collections.sort(result, new ReverseComparator(ExecutionSemester.COMPARATOR_BY_SEMESTER_AND_YEAR));

        return result;
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.