Uses of Class
edu.rice.cs.drjava.model.repl.InteractionsDJDocument

Packages that use InteractionsDJDocument
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. 
 

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

Fields in edu.rice.cs.drjava.model declared as InteractionsDJDocument
protected  InteractionsDJDocument AbstractGlobalModel._consoleDocAdapter
          The document adapter used in the console document.
protected  InteractionsDJDocument DefaultGlobalModel._interactionsDocument
          The document used in the Interactions model.
 

Methods in edu.rice.cs.drjava.model that return InteractionsDJDocument
 InteractionsDJDocument GlobalModel.getSwingConsoleDocument()
          TODO: remove this swing dependency.
 InteractionsDJDocument DummyGlobalModel.getSwingConsoleDocument()
           
 InteractionsDJDocument AbstractGlobalModel.getSwingConsoleDocument()
           
 InteractionsDJDocument GlobalModel.getSwingInteractionsDocument()
          TODO: remove this swing dependency.
 InteractionsDJDocument DummyGlobalModel.getSwingInteractionsDocument()
           
 InteractionsDJDocument DefaultGlobalModel.getSwingInteractionsDocument()
           
 InteractionsDJDocument AbstractGlobalModel.getSwingInteractionsDocument()
          throws UnsupportedOperationException
 

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

Fields in edu.rice.cs.drjava.model.repl declared as InteractionsDJDocument
protected  InteractionsDJDocument InteractionsModelTest._adapter
           
protected  InteractionsDJDocument InteractionsDJDocumentTest._adapter
           
 

Methods in edu.rice.cs.drjava.model.repl that return InteractionsDJDocument
 InteractionsDJDocument InteractionsEditorKit.createDefaultDocument()
           
 

Constructors in edu.rice.cs.drjava.model.repl with parameters of type InteractionsDJDocument
InteractionsModelTest.TestInteractionsModel(InteractionsDJDocument adapter)
          Constructs a new InteractionsModel.
SimpleInteractionsModel(InteractionsDJDocument document)
          Creates a new InteractionsModel with the given document adapter.
 

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

Fields in edu.rice.cs.drjava.ui declared as InteractionsDJDocument
protected  InteractionsDJDocument InteractionsPaneTest._adapter
           
protected  InteractionsDJDocument AbstractConsoleController._interactionsDJDocument
          Adapter for the Swing document used by the model.
 

Methods in edu.rice.cs.drjava.ui that return InteractionsDJDocument
 InteractionsDJDocument AbstractConsoleController.getDocumentAdapter()
          Accessor method for the InteractionsDJDocument.
 

Constructors in edu.rice.cs.drjava.ui with parameters of type InteractionsDJDocument
AbstractConsoleController(InteractionsDJDocument doc, InteractionsPane pane)
          Initializes the Swing console document and Swing interactions pane.
ConsoleController(ConsoleDocument consoleDoc, InteractionsDJDocument swingDoc)
           
InteractionsController(InteractionsModel model, InteractionsDJDocument adapter)
          Glue together the given model and a new view.
InteractionsController(InteractionsModel model, InteractionsDJDocument adapter, InteractionsPane pane)
          Glue together the given model and view.
InteractionsPane(InteractionsDJDocument doc)
          Creates an InteractionsPane with the given document.
InteractionsPane(String keymapName, InteractionsDJDocument doc)
          Creates an InteractionsPane with the given document.