Package org.fenixedu.academic.ui.struts.action.manager.enrolments

Examples of org.fenixedu.academic.ui.struts.action.manager.enrolments.SpecialSeasonStatusTrackerBean


        return new DomainObjectKeyConverter();
    }

    @Override
    public Object provide(Object source, Object currentValue) {
        SpecialSeasonStatusTrackerBean bean = ((SpecialSeasonStatusTrackerBean) source);
        final List<CompetenceCourse> courses = new ArrayList<CompetenceCourse>();
        if (bean != null && bean.getDepartment() != null) {
            courses.addAll(bean.getDepartment().getBolonhaCompetenceCourses());
            Collections.sort(courses, CompetenceCourse.COMPETENCE_COURSE_COMPARATOR_BY_NAME);
        }
        return courses;
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.ui.struts.action.manager.enrolments.SpecialSeasonStatusTrackerBean

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.