Examples of editAcronym()


Examples of org.fenixedu.academic.domain.CompetenceCourse.editAcronym()

        competenceCourse.edit(name, nameEn, basic, competenceCourseLevel, type, curricularStage);
    }

    protected void run(String competenceCourseID, String acronym) throws FenixServiceException {
        final CompetenceCourse competenceCourse = readCompetenceCourse(competenceCourseID);
        competenceCourse.editAcronym(acronym);
    }

    protected void run(String competenceCourseID, CurricularStage curricularStage) throws FenixServiceException {
        final CompetenceCourse competenceCourse = readCompetenceCourse(competenceCourseID);
        competenceCourse.changeCurricularStage(curricularStage);
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.