Examples of onTime()


Examples of org.olat.ims.qti.container.SectionContext.onTime()

    if (ict != it) throw new RuntimeException("answering to a non-current item");
    if (!ac.isOpen()) {
      // assessment must also be open (=on time)
      return QTIConstants.ERROR_ASSESSMENT_OUTOFTIME;
    }
    if (!sc.onTime()) {
      // section of the current item must also be open (=on time)
      return QTIConstants.ERROR_SUBMITTEDSECTION_OUTOFTIME;
    }
    if (!ict.isOnTime()) {
      // current item must be on time
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.