Uses of Class
edu.rice.cs.util.text.ConsoleDocument

Packages that use ConsoleDocument
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.repl Contains the adapter code for the interpreter, as well as the code for managing the history of interactions, the handling of exceptions thrown by the interpreter, etc. 
edu.rice.cs.drjava.plugins.eclipse.repl   
edu.rice.cs.drjava.ui The ui package contains classes for the default user interface for DrJava. 
edu.rice.cs.util.text   
 

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

Fields in edu.rice.cs.drjava.model declared as ConsoleDocument
protected  ConsoleDocument AbstractGlobalModel._consoleDoc
          The document used to display System.out and System.err, and to read from System.in.
 

Methods in edu.rice.cs.drjava.model that return ConsoleDocument
 ConsoleDocument GlobalModel.getConsoleDocument()
          Gets the console document.
 ConsoleDocument DummyGlobalModel.getConsoleDocument()
           
 ConsoleDocument AbstractGlobalModel.getConsoleDocument()
           
 

Methods in edu.rice.cs.drjava.model with parameters of type ConsoleDocument
protected  void AbstractGlobalModel._docAppend(ConsoleDocument doc, String s, String style)
          Appends a string to the given document using a particular attribute set.
 

Uses of ConsoleDocument in edu.rice.cs.drjava.model.repl
 

Subclasses of ConsoleDocument in edu.rice.cs.drjava.model.repl
 class InteractionsDocument
          A GUI toolkit-agnostic document that supports console-like interaction with a Java interpreter.
 

Methods in edu.rice.cs.drjava.model.repl that return ConsoleDocument
 ConsoleDocument SimpleInteractionsModel.getConsoleDocument()
          Returns null because console tab document is not supported in this model
 ConsoleDocument InteractionsModelTest.TestInteractionsModel.getConsoleDocument()
           
abstract  ConsoleDocument InteractionsModel.getConsoleDocument()
          Gets the console tab document for this interactions model
 ConsoleDocument DefaultInteractionsModel.getConsoleDocument()
           
 

Uses of ConsoleDocument in edu.rice.cs.drjava.plugins.eclipse.repl
 

Methods in edu.rice.cs.drjava.plugins.eclipse.repl that return ConsoleDocument
 ConsoleDocument EclipseInteractionsModel.getConsoleDocument()
          Gets the console tab document for this interactions model
 ConsoleDocument EclipseInteractionsModel.getConsoleDocument()
          Gets the console tab document for this interactions model
 

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

Fields in edu.rice.cs.drjava.ui declared as ConsoleDocument
protected  ConsoleDocument ConsoleController._consoleDoc
          GUI-neutral formulation of console document.
 

Methods in edu.rice.cs.drjava.ui that return ConsoleDocument
 ConsoleDocument InteractionsController.getConsoleDoc()
          Allows the abstract superclass to use the document.
 ConsoleDocument ConsoleController.getConsoleDoc()
          Gets the ConsoleDocument.
abstract  ConsoleDocument AbstractConsoleController.getConsoleDoc()
          Gets the console document for this console.
 

Constructors in edu.rice.cs.drjava.ui with parameters of type ConsoleDocument
ConsoleController(ConsoleDocument consoleDoc, InteractionsDJDocument swingDoc)
           
 

Uses of ConsoleDocument in edu.rice.cs.util.text
 

Fields in edu.rice.cs.util.text declared as ConsoleDocument
protected  ConsoleDocument ConsoleDocumentTest._doc