Uses of Interface
org.eclipse.cdt.debug.core.model.ICBreakpoint

Packages that use ICBreakpoint
org.eclipse.cdt.debug.core.model   
org.eclipse.cdt.debug.internal.core   
org.eclipse.cdt.debug.internal.core.breakpoints   
org.eclipse.cdt.debug.internal.core.sourcelookup   
org.eclipse.cdt.debug.internal.ui.propertypages   
 

Uses of ICBreakpoint in org.eclipse.cdt.debug.core.model
 

Subinterfaces of ICBreakpoint in org.eclipse.cdt.debug.core.model
 interface ICAddressBreakpoint
          A breakpoint that suspend the execution when a particular address is reached.
 interface ICFunctionBreakpoint
          A breakpoint that suspends the execution when a function is entered.
 interface ICLineBreakpoint
          A breakpoint that suspends the execution when a particular location of code is reached.
 interface ICWatchpoint
          A watchpoint specific to the C/C++ debug model.
 

Uses of ICBreakpoint in org.eclipse.cdt.debug.internal.core
 

Methods in org.eclipse.cdt.debug.internal.core with parameters of type ICBreakpoint
 boolean CBreakpointManager.supportsBreakpoint(ICBreakpoint breakpoint)
           
 

Uses of ICBreakpoint in org.eclipse.cdt.debug.internal.core.breakpoints
 

Classes in org.eclipse.cdt.debug.internal.core.breakpoints that implement ICBreakpoint
 class AbstractLineBreakpoint
          Base class for different types of location breakponts.
 class CAddressBreakpoint
          A breakpoint that suspend the execution when a particular address is reached.
 class CBreakpoint
          The base class for all C/C++ specific breakpoints.
 class CFunctionBreakpoint
          A breakpoint that suspends the execution when a function is entered.
 class CLineBreakpoint
          A breakpoint that suspends the execution when a particular line of code is reached.
 class CWatchpoint
          A watchpoint specific to the C/C++ debug model.
 

Methods in org.eclipse.cdt.debug.internal.core.breakpoints with parameters of type ICBreakpoint
static void BreakpointProblems.removeProblemsForBreakpoint(ICBreakpoint breakpoint)
           
static void BreakpointProblems.removeProblemsForResolvedBreakpoint(ICBreakpoint breakpoint, java.lang.String contextID)
           
static org.eclipse.core.resources.IMarker BreakpointProblems.reportBreakpointMoved(ICBreakpoint breakpoint, int oldLineNumber, int newLineNumber, java.lang.String contextName, java.lang.String contextID)
           
static org.eclipse.core.resources.IMarker BreakpointProblems.reportBreakpointProblem(ICBreakpoint breakpoint, java.lang.String description, int severity, java.lang.String problemType, boolean removePrevious, boolean removeOnly, java.lang.String contextName, java.lang.String contextID)
           
static org.eclipse.core.resources.IMarker BreakpointProblems.reportUnresolvedBreakpoint(ICBreakpoint breakpoint, java.lang.String contextName, java.lang.String contextID)
           
 

Uses of ICBreakpoint in org.eclipse.cdt.debug.internal.core.sourcelookup
 

Methods in org.eclipse.cdt.debug.internal.core.sourcelookup with parameters of type ICBreakpoint
 boolean CSourceLookupDirector.contains(ICBreakpoint breakpoint)
           
 

Uses of ICBreakpoint in org.eclipse.cdt.debug.internal.ui.propertypages
 

Methods in org.eclipse.cdt.debug.internal.ui.propertypages that return ICBreakpoint
 ICBreakpoint CBreakpointFilteringPage.getBreakpoint()