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.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 AbstractGlobalModel.getConsoleDocument()
           
 ConsoleDocument GlobalModel.getConsoleDocument()
          Gets the console document.
 ConsoleDocument DummyGlobalModel.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.
 void AbstractGlobalModel.saveConsoleCopy(ConsoleDocument doc, FileSaveSelector selector)
          throws UnsupportedOperationException
 void GlobalModel.saveConsoleCopy(ConsoleDocument doc, FileSaveSelector selector)
          Save copy of Console or Interactions Pane to text file.
 void DummyGlobalModel.saveConsoleCopy(ConsoleDocument doc, FileSaveSelector selector)
           
 void DefaultGlobalModel.saveConsoleCopy(ConsoleDocument doc, FileSaveSelector selector)
          Saves the unedited version of the current history to a file
 

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 DefaultInteractionsModel.getConsoleDocument()
           
 ConsoleDocument SimpleInteractionsModel.getConsoleDocument()
          Returns null because console tab document is not supported in this model
abstract  ConsoleDocument InteractionsModel.getConsoleDocument()
          Gets the console tab document for this interactions model
 ConsoleDocument InteractionsModelTest.TestInteractionsModel.getConsoleDocument()
           
 ConsoleDocument InteractionsModelTest.IncompleteInputInteractionsModel.getConsoleDocument()
           
 

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
abstract  ConsoleDocument AbstractConsoleController.getConsoleDoc()
          Gets the console document for this console.
 ConsoleDocument InteractionsController.getConsoleDoc()
          Allows the abstract superclass to use the document.
 ConsoleDocument ConsoleController.getConsoleDoc()
          Gets the ConsoleDocument.
 

Methods in edu.rice.cs.drjava.ui with parameters of type ConsoleDocument
 void MainFrame._saveConsoleCopy(ConsoleDocument doc)
          Saves a copy of either the console or the interactions pane to a file.
 

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