Uses of Class
edu.rice.cs.drjava.model.DefaultGlobalModel

Packages that use DefaultGlobalModel
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.cache The idea behind this new interface is that the rest of the model should not talk directly to the document cache but rather to an adapter to the cache. 
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. 
 

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

Subclasses of DefaultGlobalModel in edu.rice.cs.drjava.model
static class GlobalModelTestCase.TestGlobalModel
           
 

Fields in edu.rice.cs.drjava.model declared as DefaultGlobalModel
protected  DefaultGlobalModel GlobalModelTestCase._model
           
 

Methods in edu.rice.cs.drjava.model that return DefaultGlobalModel
private  DefaultGlobalModel SingleDisplayModelTest.getSDModel()
          Get the instance of the SingleDisplayModel.
 

Uses of DefaultGlobalModel in edu.rice.cs.drjava.model.cache
 

Subclasses of DefaultGlobalModel in edu.rice.cs.drjava.model.cache
private static class DocumentCacheTest.TestGlobalModel
          This is just so that we can have an instance of a DefaultGlobalModel rather than a single display model.
 

Fields in edu.rice.cs.drjava.model.cache declared as DefaultGlobalModel
private  DefaultGlobalModel DocumentCacheTest._model
           
 

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

Fields in edu.rice.cs.drjava.model.repl declared as DefaultGlobalModel
protected  DefaultGlobalModel DefaultInteractionsModel._model
          Model that contains the interpreter to use.
 

Constructors in edu.rice.cs.drjava.model.repl with parameters of type DefaultGlobalModel
DefaultInteractionsModel(DefaultGlobalModel model, MainJVM jvm, ConsoleDocumentInterface cDoc, File wd)
          Creates a new InteractionsModel.