package testtool.StudentTesting;

import testtool.Proctoring.*;
import testtool.Publish.*;

import java.util.Collection;

/**
 *
 * 
        A Time consists of an hour, minute, and AM or PM indicator.  A tim
 *e
        value is expressed using a 12-hour or 24-hour clock style.  The
 * clock
        style is set as an option by the user.  If the clock style is 24-hour,
        the AmOrPm indicator is nil.
     * 
 * @author 
 * @version 
 *
 **/

public class Time {

     /** Default Constructor **/
     public Time() {

     }

     protected int hour;

     protected int minute;

     protected AmOrPm am_or_pm;

}