Uses of Class
edu.rice.cs.drjava.model.junit.JUnitError

Packages that use JUnitError
edu.rice.cs.drjava.model The model package is responsible for the majority of the logic and state in DrJava. 
edu.rice.cs.drjava.model.junit Contains the code for integration of the JUnit testing facility. 
edu.rice.cs.drjava.model.repl.newjvm Manages the creation and invocation of the separate JVM used by the interactions pane. 
edu.rice.cs.drjava.ui The ui package contains classes for the default user interface for DrJava. 
 

Uses of JUnitError in edu.rice.cs.drjava.model
 

Methods in edu.rice.cs.drjava.model with parameters of type JUnitError
 void DefaultGlobalModel.testFinished(JUnitError[] errors)
          Called from the JUnitTestManager after the test finishes
 void GlobalModel.testFinished(JUnitError[] errors)
          Called from the JUnitTestManager after the test finishes
 

Uses of JUnitError in edu.rice.cs.drjava.model.junit
 

Fields in edu.rice.cs.drjava.model.junit declared as JUnitError
private  JUnitError[] JUnitErrorModel._errors
           
private  JUnitError[] JUnitErrorModel._errorsWithoutPositions
           
 

Methods in edu.rice.cs.drjava.model.junit that return JUnitError
 JUnitError[] JUnitErrorModel.getErrorsWithPositions()
          Returns the array of errors with positions.
 JUnitError[] JUnitErrorModel.getErrorsWithoutPositions()
          Returns the array of errors without positions.
private  JUnitError JUnitTestManager._makeJUnitError(TestFailure tF, String theclass, boolean isError, String fileName)
          Constructs a new JUnitError from a TestFailure
 

Methods in edu.rice.cs.drjava.model.junit with parameters of type JUnitError
private  void JUnitErrorModel._groupErrors(JUnitError[] errors)
          Groups errors into those with and without positions, and creates the corresponding array of positions.
private  int JUnitError.compareByPosition(JUnitError other)
          Compares this error with the given one, based first on line number, and then by column.
 

Constructors in edu.rice.cs.drjava.model.junit with parameters of type JUnitError
JUnitErrorModel(DefinitionsDocument doc, JUnitError[] errors)
          Constructs a new JUnitErrorModel to be maintained by a particular OpenDefinitionsDocument.
 

Uses of JUnitError in edu.rice.cs.drjava.model.repl.newjvm
 

Methods in edu.rice.cs.drjava.model.repl.newjvm with parameters of type JUnitError
 void InterpreterJVM.testFinished(JUnitError[] errors)
           
 void MainJVM.testFinished(JUnitError[] errors)
           
 void MainJVMRemoteI.testFinished(JUnitError[] errors)
           
 

Uses of JUnitError in edu.rice.cs.drjava.ui
 

Fields in edu.rice.cs.drjava.ui declared as JUnitError
private  JUnitError JUnitPanel.JUnitErrorListPane.PopupAdapter._error
           
 

Methods in edu.rice.cs.drjava.ui that return JUnitError
private  JUnitError JUnitPanel.JUnitErrorListPane._errorAtPoint(Point p)
          Returns JUnitError associated with the given visual coordinates.
 JUnitError JUnitPanel.JUnitErrorListPane.PopupAdapter.getError()
           
 

Methods in edu.rice.cs.drjava.ui with parameters of type JUnitError
private  void JUnitPanel.JUnitErrorListPane._displayStackTrace(JUnitError e)
           
private  int JUnitPanel.JUnitErrorListPane._getIndexForError(JUnitError error)
          Returns the index into _errorListPositions corresponding to the given JUnitError.
private  void JUnitPanel.JUnitErrorListPane._insertErrorText(JUnitError[] array, int i, Document doc)
          Puts an error message into the array of errors at the specified index.
 void JUnitPanel.JUnitErrorListPane.selectItem(JUnitError error)
          Selects the given error inside the error list pane.
(package private)  void JUnitPanel.JUnitErrorListPane.switchToError(JUnitError error)
          Change all state to select a new error, including moving the caret to the error, if a corresponding position exists.