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

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

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

Fields in edu.rice.cs.drjava.model declared as GlobalEventNotifier
 GlobalEventNotifier AbstractGlobalModel._notifier
          Keeps track of all listeners to the model, and has the ability to notify them of some event.
protected  GlobalEventNotifier EventNotifierTest._notifier
           
 

Methods in edu.rice.cs.drjava.model that return GlobalEventNotifier
 GlobalEventNotifier AbstractGlobalModel.getNotifier()
          Notifier list for the global model.
 GlobalEventNotifier GlobalModel.getNotifier()
           
 GlobalEventNotifier DummyGlobalModel.getNotifier()
           
 

Methods in edu.rice.cs.drjava.model with parameters of type GlobalEventNotifier
 void BrowserHistoryManager.addBrowserRegion(BrowserDocumentRegion r, GlobalEventNotifier notifier)
          Add the supplied DocumentRegion r to the manager as current region.
 void BrowserHistoryManager.addBrowserRegionBefore(BrowserDocumentRegion r, GlobalEventNotifier notifier)
          Add the supplied DocumentRegion r to the manager before the current region.
 BrowserDocumentRegion BrowserHistoryManager.nextCurrentRegion(GlobalEventNotifier notifier)
          Make the region that is more recent the current region.
 BrowserDocumentRegion BrowserHistoryManager.prevCurrentRegion(GlobalEventNotifier notifier)
          Make the region that is less recent the current region.
 

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

Fields in edu.rice.cs.drjava.model.definitions declared as GlobalEventNotifier
private  GlobalEventNotifier CommentTest._notifier
           
private  GlobalEventNotifier DefinitionsDocument._notifier
          Keeps track of the listeners to this model.
private  GlobalEventNotifier DefinitionsDocumentTest._notifier
           
private  GlobalEventNotifier DefinitionsEditorKit._notifier
           
private  GlobalEventNotifier CompoundUndoManager._notifier
          Keeps track of the listeners to this undo manager.
private  GlobalEventNotifier IndentTest._notifier
           
 

Constructors in edu.rice.cs.drjava.model.definitions with parameters of type GlobalEventNotifier
CompoundUndoManager(GlobalEventNotifier notifier)
          Standard constructor.
DefinitionsDocument(GlobalEventNotifier notifier)
          Convenience constructor.
DefinitionsDocument(GlobalEventNotifier notifier, CompoundUndoManager undoManager)
          Main constructor.
DefinitionsDocument(Indenter indenter, GlobalEventNotifier notifier)
          Convenience constructor used ??
DefinitionsDocument(Indenter indenter, GlobalEventNotifier notifier, CompoundUndoManager undoManager)
          Root constructor that other constructors call; not used directly
DefinitionsEditorKit(GlobalEventNotifier notifier)
          Creates a new editor kit with the given listeners.
 

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

Fields in edu.rice.cs.drjava.model.repl declared as GlobalEventNotifier
private  GlobalEventNotifier InteractionsDJDocument._notifier
           
 

Constructors in edu.rice.cs.drjava.model.repl with parameters of type GlobalEventNotifier
InteractionsDJDocument(GlobalEventNotifier notifier)