org.eclipse.cdt.debug.core.model
Interface IRunToLine

All Known Subinterfaces:
ICStackFrame
All Known Implementing Classes:
CStackFrame

public interface IRunToLine

Provides the ability to run a debug target to the given line.


Method Summary
 boolean canRunToLine(org.eclipse.core.resources.IFile file, int lineNumber)
          Returns whether this operation is currently available for this file and line number.
 boolean canRunToLine(java.lang.String fileName, int lineNumber)
          Returns whether this operation is currently available for this file and line number.
 void runToLine(org.eclipse.core.resources.IFile file, int lineNumber, boolean skipBreakpoints)
          Causes this element to run to specified location.
 void runToLine(java.lang.String fileName, int lineNumber, boolean skipBreakpoints)
          Causes this element to run to specified location.
 

Method Detail

canRunToLine

boolean canRunToLine(org.eclipse.core.resources.IFile file,
                     int lineNumber)
Returns whether this operation is currently available for this file and line number.

Returns:
whether this operation is currently available

runToLine

void runToLine(org.eclipse.core.resources.IFile file,
               int lineNumber,
               boolean skipBreakpoints)
               throws org.eclipse.debug.core.DebugException
Causes this element to run to specified location.

Throws:
org.eclipse.debug.core.DebugException - on failure. Reasons include:

canRunToLine

boolean canRunToLine(java.lang.String fileName,
                     int lineNumber)
Returns whether this operation is currently available for this file and line number.

Returns:
whether this operation is currently available

runToLine

void runToLine(java.lang.String fileName,
               int lineNumber,
               boolean skipBreakpoints)
               throws org.eclipse.debug.core.DebugException
Causes this element to run to specified location.

Throws:
org.eclipse.debug.core.DebugException - on failure. Reasons include: