Package org.fenixedu.academic.domain.student

Examples of org.fenixedu.academic.domain.student.RegistrationRegimeType


    public String getRegime() {
        if (getRegistration() == null) {
            return "";
        }

        RegistrationRegimeType type = getRegistration().getRegimeType(getForExecutionYear());

        if (RegistrationRegimeType.FULL_TIME.equals(type)) {
            return "Tempo integral";
        } else if (RegistrationRegimeType.PARTIAL_TIME.equals(type)) {
            return "Tempo parcial";
View Full Code Here


        }

        Collection<ExecutionYear> registrationExecutionYears = getRegistration().getEnrolmentsExecutionYears();
        int count = 0;
        for (ExecutionYear executionYear : registrationExecutionYears) {
            RegistrationRegimeType regimeType = getRegistration().getRegimeType(executionYear);

            count += (RegistrationRegimeType.FULL_TIME.equals(regimeType)) ? 1 : 0;
        }

        return count;
View Full Code Here

                .toString("dd-MM-yyyy");
    }

    @Override
    public String getRegimen() {
        RegistrationRegimeType type = registration.getRegimeType(readCurrentExecutionYear());

        if (RegistrationRegimeType.FULL_TIME.equals(type)) {
            return BundleUtil.getString(Bundle.ACADEMIC, "label.utl.scholarship.report.regimen.full");
        } else if (RegistrationRegimeType.PARTIAL_TIME.equals(type)) {
            return BundleUtil.getString(Bundle.ACADEMIC, "label.utl.scholarship.report.regimen.partial");
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.student.RegistrationRegimeType

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.