Package org.olat.course.condition.interpreter.score

Examples of org.olat.course.condition.interpreter.score.GetPassedWithCourseIdFunction


    env.addFunction(GetRecentEnrollmentDateFunction.name, new GetRecentEnrollmentDateFunction(userCourseEnv));

    // functions to calculate score
    env.addFunction(GetPassedFunction.name, new GetPassedFunction(userCourseEnv));
    env.addFunction(GetScoreFunction.name, new GetScoreFunction(userCourseEnv));
    env.addFunction(GetPassedWithCourseIdFunction.name, new GetPassedWithCourseIdFunction(userCourseEnv));
    env.addFunction(GetScoreWithCourseIdFunction.name, new GetScoreWithCourseIdFunction(userCourseEnv));

    // units
    env.addUnit("min", new MinuteUnit());
    env.addUnit("h", new HourUnit());
View Full Code Here

TOP

Related Classes of org.olat.course.condition.interpreter.score.GetPassedWithCourseIdFunction

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.