Package org.fenixedu.academic.domain.studentCurriculum.CurriculumModule

Examples of org.fenixedu.academic.domain.studentCurriculum.CurriculumModule.ConclusionValue


                    groupName.append(")</span>");
                }

                if (isViewerAllowedToViewFullStudentCurriculum(studentCurricularPlan) && studentCurricularPlan.isBolonhaDegree()
                        && creditsLimit != null) {
                    final ConclusionValue value = curriculumGroup.isConcluded(executionYearContext);
                    groupName.append(" <em style=\"background-color:" + getBackgroundColor(value) + "; color:" + getColor(value)
                            + "\"");
                    groupName.append(">");
                    groupName.append(value.getLocalizedName());
                    groupName.append("</em>");
                }

            }
            return groupName;
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.studentCurriculum.CurriculumModule.ConclusionValue

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.