Uses of Class
edu.rice.cs.util.text.SwingDocument

Packages that use SwingDocument
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.junit Contains the code for integration of the JUnit testing facility. 
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 SwingDocument in edu.rice.cs.drjava.model
 

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

Fields in edu.rice.cs.drjava.model declared as SwingDocument
protected  SwingDocument DummyOpenDefDoc._defDoc
           
 

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

Subclasses of SwingDocument in edu.rice.cs.drjava.model.definitions
 class DefinitionsDocument
          The document model for the definitions pane; it contains a reduced model since it extends AbstractDJDocument.
 

Uses of SwingDocument in edu.rice.cs.drjava.model.junit
 

Methods in edu.rice.cs.drjava.model.junit that return SwingDocument
 SwingDocument JUnitModel.getJUnitDocument()
          This is used by test cases and perhaps other things.
 SwingDocument DefaultJUnitModel.getJUnitDocument()
          Used only for testing.
 

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

Subclasses of SwingDocument in edu.rice.cs.drjava.model.repl
 class InteractionsDJDocument
          Represents a Swing-based InteractionsDocument.
 

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

Fields in edu.rice.cs.drjava.ui declared as SwingDocument
protected static SwingDocument AbstractDJPane.NULL_DOCUMENT
           
 

Methods in edu.rice.cs.drjava.ui that return SwingDocument
 SwingDocument ErrorPanel.ErrorListPane.getSwingDocument()
          Gets the SwingDocument associated with this ErrorListPane.
 

Methods in edu.rice.cs.drjava.ui with parameters of type SwingDocument
protected  void ErrorPanel.ErrorListPane._insertErrors(SwingDocument doc)
          Inserts all of the errors into the given document.
protected  void ErrorPanel.ErrorListPane._insertErrorText(DJError error, SwingDocument doc)
          Prints a message for the given error
protected  void JUnitPanel.JUnitErrorListPane._updateWithErrors(String failureName, String failureMeaning, SwingDocument doc)
           
protected  void ErrorPanel.ErrorListPane._updateWithErrors(String failureName, String failureMeaning, SwingDocument doc)
          Used to show that the last compile was unsuccessful.
 

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

Fields in edu.rice.cs.util.text declared as SwingDocument
protected  SwingDocument SwingDocumentTest._doc