Examples of IndividualExam


Examples of net.sf.esims.model.valueobject.IndividualExam

  /**
   * Creates valid instance of Individual Exam
   */
 
  public static IndividualExam createValidIndExam(){
    IndividualExam individualExam = new IndividualExam();
    Date dateOfExam = EsimsUtils.createDate(2, 3, 2007);
    individualExam.setDateOfExam(dateOfExam);
    individualExam.setEndTime("09:00 AM");
    individualExam.setMaxMarks(new Integer(100));
    individualExam.setPassMark(new Integer(25));
    individualExam.setStartTime("07:00 AM");
    individualExam.setSubjectName("radiography");
    return individualExam;
  }
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.