Examples of AcademicProgram


Examples of org.fenixedu.academic.domain.AcademicProgram

        return null;
    }

    @Atomic
    private void changeDegreeJurisdiction(String programOid, String officeOid) {
        AcademicProgram program = FenixFramework.getDomainObject(programOid);
        AdministrativeOffice office = FenixFramework.getDomainObject(officeOid);

        program.setAdministrativeOffice(office);
        if (program instanceof Degree) {
            Degree degree = (Degree) program;
            if (degree.getDegreeType() == DegreeType.BOLONHA_ADVANCED_SPECIALIZATION_DIPLOMA && degree.getPhdProgram() != null) {
                degree.getPhdProgram().setAdministrativeOffice(office);
            }
View Full Code Here

Examples of org.fenixedu.academic.domain.AcademicProgram

    }

    private void extractPrograms(String courses, Set<AcademicProgram> programs) {
        if (!courses.trim().isEmpty()) {
            for (String course : SPLITTER.split(courses)) {
                AcademicProgram program = FenixFramework.getDomainObject(course);
                programs.add(program);
            }
        }
    }
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.