Uses of Class
edu.rice.cs.drjava.model.compiler.CompilerError

Packages that use CompilerError
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.compiler Contains adaptor code for invoking various Java compilers. 
edu.rice.cs.drjava.ui The ui package contains classes for the default user interface for DrJava. 
 

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

Fields in edu.rice.cs.drjava.model declared as CompilerError
private  CompilerError[] DefaultGlobalModel._compilerErrorsWithoutFiles
          An array of all current compiler errors which do not have files.
 

Methods in edu.rice.cs.drjava.model that return CompilerError
 CompilerError[] DefaultGlobalModel.getCompilerErrorsWithoutFiles()
          Returns an array of all current compiler errors which do not have files.
 CompilerError[] GlobalModel.getCompilerErrorsWithoutFiles()
          Gets the array of all compile errors without Files.
 

Methods in edu.rice.cs.drjava.model with parameters of type CompilerError
private  void DefaultGlobalModel._distributeErrors(CompilerError[] errors)
          Sorts the given array of CompilerErrors and divides it into groups based on the file, giving each group to the appropriate OpenDefinitionsDocument, opening files if necessary.
 

Uses of CompilerError in edu.rice.cs.drjava.model.compiler
 

Fields in edu.rice.cs.drjava.model.compiler declared as CompilerError
private  CompilerError[] CompilerErrorModel._errors
           
private  CompilerError[] CompilerErrorModel._errorsWithoutPositions
           
 

Methods in edu.rice.cs.drjava.model.compiler that return CompilerError
 CompilerError[] CompilerProxy.compile(File sourceRoot, File[] files)
          Compile the given files.
 CompilerError[] CompilerProxy.compile(File[] sourceRoots, File[] files)
          Compile the given files.
 CompilerError[] NoCompilerAvailable.compile(File sourceRoot, File[] files)
           
 CompilerError[] NoCompilerAvailable.compile(File[] sourceRoots, File[] files)
           
 CompilerError[] CompilerInterface.compile(File sourceRoot, File[] files)
          Compile the given files.
 CompilerError[] CompilerInterface.compile(File[] sourceRoots, File[] files)
          Compile the given files.
 CompilerError[] GJv6Compiler.compile(File sourceRoot, File[] files)
          Compile the given files.
 CompilerError[] GJv6Compiler.compile(File[] sourceRoots, File[] files)
          Compile the given files.
 CompilerError[] GJv6Compiler.OurLog.getErrors()
          put your documentation comment here
 CompilerError[] CompilerErrorModel.getErrorsWithPositions()
          Returns the array of errors with positions.
 CompilerError[] CompilerErrorModel.getErrorsWithoutPositions()
          Returns the array of errors without positions.
 

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

Constructors in edu.rice.cs.drjava.model.compiler with parameters of type CompilerError
CompilerErrorModel(CompilerError[] errors, Document doc, File file)
          Constructs a new CompilerErrorModel to be maintained by a particular OpenDefinitionsDocument.
 

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

Methods in edu.rice.cs.drjava.ui that return CompilerError
private  CompilerError CompilerErrorPanel.ErrorListPane._errorAtPoint(Point p)
          Returns CompilerError associated with the given visual coordinates.
 

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