Uses of Interface
edu.rice.cs.drjava.model.repl.InteractionsListener

Packages that use InteractionsListener
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.debug Contains the code for DrJava's JPDA-based debugger. 
edu.rice.cs.drjava.model.debug.jpda   
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 InteractionsListener in edu.rice.cs.drjava.model
 

Subinterfaces of InteractionsListener in edu.rice.cs.drjava.model
 interface GlobalModelListener
          An interface for responding to events generated by the GlobalModel.
 

Classes in edu.rice.cs.drjava.model that implement InteractionsListener
 class DummyGlobalModelListener
          A dummy GlobalModelListener that does nothing.
 class GlobalEventNotifier
          Keeps track of all listeners to the model, and has the ability to notify them of some event.
(package private)  class GlobalModelIOTest.TestFileIOListener
           
(package private)  class GlobalModelIOTest.TestIOListener
           
 class GlobalModelJUnitTest.JUnitCompileBeforeTestListener
          Tests that testing an uncompiled but correct group of files will first compile and then run test.
static class GlobalModelTestCase.CompileShouldFailListener
          A model listener for situations expecting a compilation to fail.
static class GlobalModelTestCase.CompileShouldSucceedListener
          A model listener for situations expecting a compilation to succeed.
static class GlobalModelTestCase.InteractionListener
           
static class GlobalModelTestCase.JUnitNonTestListener
          Listener class for failing JUnit invocation.
static class GlobalModelTestCase.JUnitTestListener
           
static class GlobalModelTestCase.TestListener
          A GlobalModelListener for testing.
static class SingleDisplayModelTest.SDTestListener
          A GlobalModelListener for testing.
 

Fields in edu.rice.cs.drjava.model declared as InteractionsListener
protected  InteractionsListener DefaultGlobalModel._interactionsListener
          Core listener attached to interactions model
private  InteractionsListener DefaultGlobalModel.ConcreteOpenDefDoc._runMain
           
 

Uses of InteractionsListener in edu.rice.cs.drjava.model.debug
 

Classes in edu.rice.cs.drjava.model.debug that implement InteractionsListener
protected  class DebugTestCase.InterpretListener
          TestListener that listens for an interpretation to end, and then notifies anyone waiting on it.
 

Uses of InteractionsListener in edu.rice.cs.drjava.model.debug.jpda
 

Fields in edu.rice.cs.drjava.model.debug.jpda declared as InteractionsListener
private  InteractionsListener JPDADebugger._watchListener
           
 

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

Classes in edu.rice.cs.drjava.model.repl that implement InteractionsListener
 class DummyInteractionsListener
          A dummy InteractionsListener that does nothing.
 class InteractionsEventNotifier
          Keeps track of all listeners to an InteractionsModel, and has the ability to notify them of some event.
 

Methods in edu.rice.cs.drjava.model.repl with parameters of type InteractionsListener
 void InteractionsModel.addListener(InteractionsListener listener)
          Adds an InteractionsListener to the model.
 void InteractionsModel.removeListener(InteractionsListener listener)
          Removea an InteractionsListener from the model.
 

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

Classes in edu.rice.cs.drjava.ui that implement InteractionsListener
(package private) static class DefinitionsPaneMemoryLeakTest.DocChangeListener
           
private  class MainFrame.ModelListener
          Inner class to listen to all events in the model.
(package private)  class MainFrameTest.SingleDisplayModelCompileListener
          A CompileListener for SingleDisplayModel (instead of GlobalModel)
(package private)  class MainFrameTest.SingleDisplayModelFileClosedListener
          A FileClosedListener for SingleDisplayModel (instead of GlobalModel)
(package private)  class MainFrameTest.SingleDisplayModelFileOpenedListener
          A FileClosedListener for SingleDisplayModel (instead of GlobalModel)
 

Fields in edu.rice.cs.drjava.ui declared as InteractionsListener
private  InteractionsListener InteractionsController._viewListener