Uses of Interface
edu.rice.cs.util.text.AbstractDocumentInterface

Packages that use AbstractDocumentInterface
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. 
edu.rice.cs.util.text   
 

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

Subinterfaces of AbstractDocumentInterface in edu.rice.cs.drjava.model
 interface DJDocument
          Interface shared by the Definitions Document, Open Definitions Document, and Interactions Document.
 interface OpenDefinitionsDocument
          Interface for an open document in DrJava.
 

Classes in edu.rice.cs.drjava.model that implement AbstractDocumentInterface
 class AbstractDJDocument
          This class contains code supporting the concept of a "DJDocument"; it is shared between DefinitionsDocument and InteractionsDJDocument.
(package private)  class AbstractGlobalModel.ConcreteOpenDefDoc
          A wrapper around a DefinitionsDocument or potential DefinitionsDocument (if it has been kicked out of the cache) The GlobalModel interacts with DefinitionsDocuments through this wrapper.
This call was formerly called the DefinitionsDocumentHandler but was renamed (2004-Jun-8) to be more descriptive/intuitive.
(package private)  class DefaultGlobalModel.ConcreteOpenDefDoc
          Inner class to handle operations on each of the open DefinitionsDocuments by the GlobalModel.
 class DummyOpenDefDoc
           
private static class TestDocGetter.TestOpenDoc
          Test implementation of OpenDefinitionsDocument interface.
 

Methods in edu.rice.cs.drjava.model with parameters of type AbstractDocumentInterface
 OpenDefinitionsDocument AbstractGlobalModel.getODDForDocument(AbstractDocumentInterface doc)
          Returns the OpenDefinitionsDocument corresponding to the INavigatorItem/DefinitionsDocument passed in.
 OpenDefinitionsDocument GlobalModel.getODDForDocument(AbstractDocumentInterface doc)
          CHECK IF NEEDED!
 OpenDefinitionsDocument DummyGlobalModel.getODDForDocument(AbstractDocumentInterface doc)
           
 

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

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

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

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

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

Classes in edu.rice.cs.drjava.ui that implement AbstractDocumentInterface
 class ErrorPanel.ErrorDocument
           
 

Uses of AbstractDocumentInterface in edu.rice.cs.util.text
 

Subinterfaces of AbstractDocumentInterface in edu.rice.cs.util.text
 interface SwingDocumentInterface
          StyledDocument interface augmented by AbstractDocumentInterface.
 

Classes in edu.rice.cs.util.text that implement AbstractDocumentInterface
 class SwingDocument
          A swing implementation of the toolkit-independent EditDocumentInterface.