Package org.fenixedu.academic.domain

Examples of org.fenixedu.academic.domain.QualificationType


    }

    private static void drawQualification(final Page page, final Qualification qualification) throws IOException {
        page.tableStart("tstyle2 thwhite thnowrap thlight thleft thtop ulnomargin ");
        if (qualification != null) {
            final QualificationType type = qualification.getType();
            page.rowStart().header("Type:").column(type == null ? "-" : type.getLocalizedName()).rowEnd();
            final String degree = qualification.getDegree();
            page.rowStart().header("Scientific Field:").column(degree == null ? "-" : degree).rowEnd();
            final String school = qualification.getSchool();
            page.rowStart().header("Institution:").column(school == null ? "-" : school).rowEnd();
            final String mark = qualification.getMark();
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.QualificationType

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.