org.problets.student
Class StudentRecord

java.lang.Object
  extended by org.problets.student.StudentRecord

public class StudentRecord
extends java.lang.Object

Holds the information about the student's answer to one problem

Author:
Amruth Kumar

Constructor Summary
StudentRecord()
          Currently used by ExpressionTutor
StudentRecord(int inTemplateNumber)
           
StudentRecord(int inTemplateNumber, int inActualSteps, int inStudentSteps, int inCorrectSteps, int inIncorrectSteps, int inMissedSteps)
           
 
Method Summary
 int getActualSteps()
           
 int getCorrectSteps()
           
 long getFeedbackTime()
           
 long getProblemTime()
           
 int getStudentSteps()
           
static void main(java.lang.String[] args)
           
 void print()
           
 void setActualSteps(int steps)
           
 void setCorrectSteps(int steps)
           
 void setFeedbackTime(long time)
           
 void setProblemTime(long time)
           
 void setStudentSteps(int steps)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

StudentRecord

public StudentRecord(int inTemplateNumber,
                     int inActualSteps,
                     int inStudentSteps,
                     int inCorrectSteps,
                     int inIncorrectSteps,
                     int inMissedSteps)

StudentRecord

public StudentRecord(int inTemplateNumber)

StudentRecord

public StudentRecord()
Currently used by ExpressionTutor

Method Detail

getActualSteps

public int getActualSteps()

getStudentSteps

public int getStudentSteps()

getCorrectSteps

public int getCorrectSteps()

getProblemTime

public long getProblemTime()

getFeedbackTime

public long getFeedbackTime()

setActualSteps

public void setActualSteps(int steps)

setStudentSteps

public void setStudentSteps(int steps)

setCorrectSteps

public void setCorrectSteps(int steps)

setProblemTime

public void setProblemTime(long time)

setFeedbackTime

public void setFeedbackTime(long time)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

print

public void print()

main

public static void main(java.lang.String[] args)