Uses of Interface
edu.rice.cs.drjava.model.debug.Breakpoint

Packages that use Breakpoint
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.ui The ui package contains classes for the default user interface for DrJava. 
 

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

Fields in edu.rice.cs.drjava.model with type parameters of type Breakpoint
protected  ConcreteRegionManager<Breakpoint> AbstractGlobalModel._breakpointManager
          Manager for breakpoint regions.
 

Methods in edu.rice.cs.drjava.model that return types with arguments of type Breakpoint
 RegionManager<Breakpoint> OpenDefinitionsDocument.getBreakpointManager()
           
 RegionManager<Breakpoint> GlobalModel.getBreakpointManager()
           
 RegionManager<Breakpoint> DummyOpenDefDoc.getBreakpointManager()
           
 RegionManager<Breakpoint> DummyGlobalModel.getBreakpointManager()
           
 RegionManager<Breakpoint> AbstractGlobalModel.getBreakpointManager()
           
 

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

Methods in edu.rice.cs.drjava.model.debug that return Breakpoint
 Breakpoint NoDebuggerAvailable.getBreakpoint(int line, String className)
          Gets the Breakpoint object at the specified line in the given class.
 Breakpoint Debugger.getBreakpoint(int line, String className)
          Gets the Breakpoint object at the specified line in the given class.
 

Methods in edu.rice.cs.drjava.model.debug with parameters of type Breakpoint
 void DebugTestCase.DebugTestListener.breakpointReached(Breakpoint bp)
           
 void DebugTestCase.BreakpointTestListener.breakpointReached(Breakpoint bp)
           
 void DebugListener.breakpointReached(Breakpoint bp)
          Called when a breakpoint is reached during execution.
 void DebugEventNotifier.breakpointReached(Breakpoint bp)
          Called when a breakpoint is reached during execution.
 void DebugTestCase.DebugTestListener.regionAdded(Breakpoint bp)
           
 void DebugTestCase.BreakpointTestListener.regionAdded(Breakpoint bp)
           
 void DebugEventNotifier.regionAdded(Breakpoint bp)
          Called when a breakpoint is set in a document.
 void DebugTestCase.DebugTestListener.regionChanged(Breakpoint bp)
           
 void DebugEventNotifier.regionChanged(Breakpoint bp)
          Called when a breakpoint is changed during execution.
 void DebugTestCase.DebugTestListener.regionRemoved(Breakpoint bp)
           
 void DebugTestCase.BreakpointTestListener.regionRemoved(Breakpoint bp)
           
 void DebugEventNotifier.regionRemoved(Breakpoint bp)
          Called when a breakpoint is removed from a document.
 void NoDebuggerAvailable.removeBreakpoint(Breakpoint breakpoint)
          Removes a breakpoint.
 void Debugger.removeBreakpoint(Breakpoint breakpoint)
          Removes a breakpoint.
 void NoDebuggerAvailable.scrollToSource(Breakpoint bp)
          Scrolls to the source indicated by the given Breakpoint
 void Debugger.scrollToSource(Breakpoint bp)
          Scrolls to the source indicated by the given Breakpoint
 void NoDebuggerAvailable.setBreakpoint(Breakpoint breakpoint)
          Sets a breakpoint.
 void Debugger.setBreakpoint(Breakpoint breakpoint)
          Sets a breakpoint.
 

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

Classes in edu.rice.cs.drjava.model.debug.jpda that implement Breakpoint
 class JPDABreakpoint
          The breakpoint object which has references to its OpenDefinitionsDocument and its BreakpointRequest.
 

Methods in edu.rice.cs.drjava.model.debug.jpda that return Breakpoint
 Breakpoint JPDADebugger.getBreakpoint(int line, String className)
          Gets the Breakpoint object at the specified line in the given class.
 

Methods in edu.rice.cs.drjava.model.debug.jpda with parameters of type Breakpoint
 void JPDADebugger.notifyBreakpointChange(Breakpoint breakpoint)
          Enable or disable the specified breakpoint.
 void JPDADebugger.removeBreakpoint(Breakpoint bp)
          Removes a breakpoint.
 void JPDADebugger.scrollToSource(Breakpoint bp)
          Scrolls to the source of the given breakpoint.
 void JPDADebugger.setBreakpoint(Breakpoint breakpoint)
          Sets a breakpoint.
 

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

Methods in edu.rice.cs.drjava.ui that return types with arguments of type Breakpoint
protected  RegionsTreePanel.RegionTreeUserObj<Breakpoint> BreakpointsPanel.makeRegionTreeUserObj(Breakpoint bp)
          Factory method to create user objects put in the tree.
 

Methods in edu.rice.cs.drjava.ui with parameters of type Breakpoint
 void DefinitionsPane.addBreakpointHighlight(Breakpoint bp)
           
protected  RegionsTreePanel.RegionTreeUserObj<Breakpoint> BreakpointsPanel.makeRegionTreeUserObj(Breakpoint bp)
          Factory method to create user objects put in the tree.
 void DefinitionsPane.removeBreakpointHighlight(Breakpoint bp)
           
 

Constructors in edu.rice.cs.drjava.ui with parameters of type Breakpoint
BreakpointsPanel.BreakpointRegionTreeUserObj(Breakpoint bp)
           
 

Constructor parameters in edu.rice.cs.drjava.ui with type arguments of type Breakpoint
BreakpointsPanel(MainFrame frame, RegionManager<Breakpoint> breakpointManager)
          Constructs a new breakpoints panel.