Uses of Class
org.problets.domain.model.output.LineOutput

Packages that use LineOutput
org.problets.domain.model.output   
org.problets.domain.model.output.view   
org.problets.student   
org.problets.tutor   
 

Uses of LineOutput in org.problets.domain.model.output
 

Subclasses of LineOutput in org.problets.domain.model.output
 class StudentLineOutput
          To store the output of one output statement entered by the student
 

Fields in org.problets.domain.model.output declared as LineOutput
static LineOutput LineOutput.NO_OUTPUT
           
 

Methods in org.problets.domain.model.output with parameters of type LineOutput
 void OutputStream.addToOutput(LineOutput output)
           
 boolean LineOutput.equals(LineOutput par)
           
 boolean LineOutput.equalsIgnoreWhiteSpace(LineOutput par)
           
 

Uses of LineOutput in org.problets.domain.model.output.view
 

Methods in org.problets.domain.model.output.view that return LineOutput
 LineOutput LineOutputView.getLineOutput()
          Gets the pointer to the LineOutput object
 

Methods in org.problets.domain.model.output.view with parameters of type LineOutput
 void OutputStreamView.addLineOutput(LineOutput lOutput)
          Adds a LineOutputView to the end of the outputView Vector and decides how to repaint the component.
 void OutputStreamView.insertLineOutput(LineOutput lOutput, int loc)
          Inserts a LineOutputView into the Vector and decides how to repaint the component.
 void OutputStreamView.removeLineOutput(LineOutput lOutput)
          Removes the view corresponding to the LineOutput object
 

Constructors in org.problets.domain.model.output.view with parameters of type LineOutput
LineOutputView(LineOutput inLineOutput, java.awt.Font inFont, java.awt.FontMetrics inFontMetrics)
          Constructs a LineOutputView and sets the pointer to the LineOutput object
 

Uses of LineOutput in org.problets.student
 

Methods in org.problets.student with parameters of type LineOutput
 void StudentModel.addtoAnswer(LineOutput inOutput)
          Adds to the answer for an output problem - Needed to enter "No Output"
 void AnswerList.addtoAnswer(LineOutput inOutput)
          This method is used to record "No Output" specified by the user for the current code.
 void AnswerList.addtoAnswer(LineOutput inOutput, java.util.Vector actualAnswer)
          This method is used to record the output specified by the user for the current code.
 void StudentModel.addtoAnswer(LineOutput inOutput, java.util.Vector actualOutput, java.lang.Object source)
          Adds to the answer for an output problem
 

Uses of LineOutput in org.problets.tutor
 

Methods in org.problets.tutor with parameters of type LineOutput
 boolean OutputTutor.gradeAnswer(LineOutput inOutput, int ordinality)