Package org.fenixedu.academic.ui.struts.action.academicAdministration.executionCourseManagement

Examples of org.fenixedu.academic.ui.struts.action.academicAdministration.executionCourseManagement.ExecutionCourseBean


public class ExecutionCoursesProvider extends AbstractDomainObjectProvider {

    @Override
    public Object provide(Object arg0, Object arg1) {
        ExecutionCourseBean bean = (ExecutionCourseBean) arg0;
        ExecutionSemester executionSemester = bean.getExecutionSemester();
        HashSet<ExecutionCourse> result = new HashSet<ExecutionCourse>();
        if (executionSemester != null) {
            for (ExecutionCourse executionCourse : executionSemester.getAssociatedExecutionCoursesSet()) {
                for (ExecutionDegree degree : executionCourse.getExecutionDegrees()) {
                    if (AcademicPredicates.MANAGE_EXECUTION_COURSES.evaluate(degree.getDegree())) {
View Full Code Here


public class ExecutionCourseProvider extends AbstractDomainObjectProvider {

    @Override
    public Object provide(Object arg0, Object arg1) {
        ExecutionCourseBean bean = (ExecutionCourseBean) arg0;
        ExecutionSemester executionSemester = bean.getExecutionSemester();
        return executionSemester == null ? Collections.EMPTY_LIST : executionSemester.getAssociatedExecutionCoursesSet();
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.ui.struts.action.academicAdministration.executionCourseManagement.ExecutionCourseBean

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.