Package org.fenixedu.academic.domain.degree

Examples of org.fenixedu.academic.domain.degree.DegreeType


    }

    @Override
    public Integer getNumberOfCurricularYears() {
        Registration registration = getRegistration();
        DegreeType degreeType = registration.getDegree().getDegreeType();
        return degreeType.getYears(getRequestedCycle());
    }
View Full Code Here


    }

    @Override
    public Integer getNumberOfCurricularSemesters() {
        Registration registration = getRegistration();
        DegreeType degreeType = registration.getDegree().getDegreeType();
        return degreeType.getSemesters(getRequestedCycle());
    }
View Full Code Here

        }
    }

    @Override
    final public String getDescription() {
        final DegreeType degreeType = getDegreeType();
        final CycleType requestedCycle = getRequestedCycle();

        return getDescription(getAcademicServiceRequestType(),
                getDocumentRequestType().getQualifiedName() + "." + degreeType.name()
                        + (degreeType.isComposite() ? "." + requestedCycle.name() : ""));
    }
View Full Code Here

            }
        }

        StringBuilder result = new StringBuilder();
        Degree degree = getDegree();
        final DegreeType degreeType = getDegreeType();
        result.append(degreeType.getGraduateTitle(cycleType, getLanguage()));
        final String degreeFilteredName = degree.getFilteredName(getConclusionYear(), getLanguage());
        result.append(" ").append(BundleUtil.getString(Bundle.APPLICATION, getLanguage(), "label.in"));
        result.append(" ").append(degreeFilteredName);

        return result.toString();
View Full Code Here

        throw new DomainException("DiplomaRequest.cannot.modify.requestedCycle");
    }

    @Override
    final public String getDescription() {
        final DegreeType degreeType = getDegreeType();
        final CycleType requestedCycle = getRequestedCycle();

        return getDescription(getAcademicServiceRequestType(),
                getDocumentRequestType().getQualifiedName() + "." + degreeType.name()
                        + (degreeType.isComposite() ? "." + requestedCycle.name() : ""));
    }
View Full Code Here

            }
        }

        StringBuilder result = new StringBuilder();
        Degree degree = getDegree();
        final DegreeType degreeType = getDegreeType();
        result.append(degreeType.getGraduateTitle(cycleType, getLanguage()));
        final String degreeFilteredName = degree.getFilteredName(conclusionYear, getLanguage());
        result.append(" ").append(BundleUtil.getString(Bundle.APPLICATION, getLanguage(), "label.in"));
        result.append(" ").append(degreeFilteredName);

        return result.toString();
View Full Code Here

        }
    }

    @Override
    final public String getDescription() {
        final DegreeType degreeType = getDegreeType();
        final CycleType requestedCycle = getRequestedCycle();

        return getDescription(getAcademicServiceRequestType(),
                getDocumentRequestType().getQualifiedName() + "." + degreeType.name()
                        + (degreeType.isComposite() ? "." + requestedCycle.name() : ""));
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.degree.DegreeType

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.