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

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

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

Subclasses of InteractionsModel in edu.rice.cs.drjava.model.repl
 class DefaultInteractionsModel
          Interactions model which can notify GlobalModelListeners on events.
static class InteractionsModelTest.TestInteractionsModel
          A generic InteractionsModel for testing purposes.
 class RMIInteractionsModel
          A Swing specific InteractionsModel which can serve as the glue between a local InteractionsDocument and a remote JavaInterpreter in another JVM.
 class SimpleInteractionsModel
          A simple implementation of InteractionsModel, which uses a DynamicJavaAdapter directly (in the same JVM) to interpret code.
 

Fields in edu.rice.cs.drjava.model.repl declared as InteractionsModel
protected  InteractionsModel InteractionsModelTest._model
           
protected  InteractionsModel InteractionsDJDocumentTest._model
           
 

Constructors in edu.rice.cs.drjava.model.repl with parameters of type InteractionsModel
InteractionsScriptModel(InteractionsModel model, List<String> interactions)
          Constructs a new interactions script using the given model and interactions.
 

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

Subclasses of InteractionsModel in edu.rice.cs.drjava.plugins.eclipse.repl
 class EclipseInteractionsModel
          Interactions model which can notify GlobalModelListeners on events.
 

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

Fields in edu.rice.cs.drjava.ui declared as InteractionsModel
protected  InteractionsModel InteractionsPaneTest._model
           
 

Methods in edu.rice.cs.drjava.ui that return InteractionsModel
 InteractionsModel InteractionsController.getInteractionsModel()
          Accessor method for the InteractionsModel.
 

Constructors in edu.rice.cs.drjava.ui with parameters of type InteractionsModel
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.