Uses of Class
edu.rice.cs.drjava.model.debug.DebugWatchData

Packages that use DebugWatchData
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.project   
edu.rice.cs.drjava.ui The ui package contains classes for the default user interface for DrJava. 
 

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

Methods in edu.rice.cs.drjava.model.debug that return types with arguments of type DebugWatchData
 ArrayList<DebugWatchData> NoDebuggerAvailable.getWatches()
          Returns all currently watched fields and variables.
 ArrayList<DebugWatchData> Debugger.getWatches()
          Returns all currently watched fields and variables.
 

Methods in edu.rice.cs.drjava.model.debug with parameters of type DebugWatchData
 void DebugTestCase.DebugTestListener.watchRemoved(DebugWatchData w)
           
 void DebugTestCase.BreakpointTestListener.watchRemoved(DebugWatchData w)
           
 void DebugListener.watchRemoved(DebugWatchData w)
          Called when a watch is removed.
 void DebugEventNotifier.watchRemoved(DebugWatchData w)
          Called when a watch is removed.
 void DebugTestCase.DebugTestListener.watchSet(DebugWatchData w)
           
 void DebugTestCase.BreakpointTestListener.watchSet(DebugWatchData w)
           
 void DebugListener.watchSet(DebugWatchData w)
          Called when a watch is set.
 void DebugEventNotifier.watchSet(DebugWatchData w)
          Called when a watch is set.
 

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

Methods in edu.rice.cs.drjava.model.debug.jpda that return types with arguments of type DebugWatchData
 ArrayList<DebugWatchData> JPDADebugger.getWatches()
          Returns all currently watched fields and variables.
 

Uses of DebugWatchData in edu.rice.cs.drjava.project
 

Methods in edu.rice.cs.drjava.project that return DebugWatchData
 DebugWatchData[] ProjectProfile.getWatches()
           
 DebugWatchData[] ProjectFileIR.getWatches()
           
 

Methods in edu.rice.cs.drjava.project that return types with arguments of type DebugWatchData
protected  List<DebugWatchData> XMLProjectFileParser.readWatches()
           
 

Method parameters in edu.rice.cs.drjava.project with type arguments of type DebugWatchData
 void ProjectProfile.setWatches(List<? extends DebugWatchData> ws)
           
 void ProjectFileIR.setWatches(List<? extends DebugWatchData> ws)
           
 

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

Methods in edu.rice.cs.drjava.ui that return DebugWatchData
 DebugWatchData DebugPanel.getSelectedWatch()