package testtool.Main;


import java.util.Collection;

/**
 *
 * A student extends user and adds the elements found in the setting screen * 
 * @author 
 * @version 
 *
 **/

public class Student extends User {

     /** Default Constructor **/
     public Student() {
          super();
     }

     protected Timer timer;

     protected int alert;

     protected StandardColor status;

     protected boolean questionDisplay;

     protected String iDE;

     protected Collection<Test> object;

}