Uses of Interface
edu.rice.cs.drjava.model.DJDocument

Packages that use DJDocument
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.definitions Provides the data model for storing Java source code. 
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 DJDocument in edu.rice.cs.drjava.model
 

Subinterfaces of DJDocument in edu.rice.cs.drjava.model
 interface OpenDefinitionsDocument
          Interface for an open document in DrJava.
 

Classes in edu.rice.cs.drjava.model that implement DJDocument
 class AbstractDJDocument
          This class contains code supporting the concept of a "DJDocument"; it is shared between DefinitionsDocument and InteractionsDJDocument.
 class DummyOpenDefDoc
           
 

Uses of DJDocument in edu.rice.cs.drjava.model.definitions
 

Classes in edu.rice.cs.drjava.model.definitions that implement DJDocument
 class DefinitionsDocument
          The document model for the definitions pane; it contains a reduced model since it extends AbstractDJDocument.
 

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

Classes in edu.rice.cs.drjava.model.repl that implement DJDocument
 class InteractionsDJDocument
          Represents a Swing-based InteractionsDocument.
 

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

Methods in edu.rice.cs.drjava.ui that return DJDocument
 DJDocument InteractionsPane.getDJDocument()
          Returns the DJDocument held by the pane.
 DJDocument DefinitionsPane.getDJDocument()
          Get the DJDocument (OpenDefinitionsDocument) contained in this pane.
abstract  DJDocument AbstractDJPane.getDJDocument()
          Returns the DJDocument held by the pane.
 

Methods in edu.rice.cs.drjava.ui with parameters of type DJDocument
protected  void DefinitionsPaneTest._assertDocumentContents(DJDocument doc, String contents, String message)
           
protected  void DefinitionsPaneTest._assertDocumentEmpty(DJDocument doc, String message)