package user; import java.util.*; /** * Collection of persistent statistics used to track student and class * progress. */ public class Statistics { /** * Number of lectures total in this class. */ int lectures; /** * Number of lectures this studend has attended. */ int lecturesAttended; /** * Total ammount of time this user has spent in class. */ int time; /** * Total ammount of time this user has been focued while in class (focus * means that one of the E-Class UI windows has primariy GUI focus). */ int timeFocused; /** * Total number of questions asked to the class. */ int questions; /** * Total number of questions this student has answered. */ int questionsAnswered; /** * Total number of correct answers this student has given. */ int questionsCorrect; }