Examples of PHPRunToLineBreakpoint


Examples of org.eclipse.php.internal.debug.core.model.PHPRunToLineBreakpoint

                // TODO: we need a to call a debugger specific
                // api, so an extension point is
                // required here for different debuggers to plug
                // into.
                if (debugTarget instanceof PHPDebugTarget) {
                  IBreakpoint breakpoint = new PHPRunToLineBreakpoint(
                      file, lineNumber);
                  RunToLineHandler handler = new RunToLineHandler(
                      debugTarget, target, breakpoint);
                  handler.run(new NullProgressMonitor());
                } else if (debugTarget instanceof DBGpTarget) {
View Full Code Here

Examples of org.eclipse.php.internal.debug.core.model.PHPRunToLineBreakpoint

    return false;
  }

  public IBreakpoint createRunToLineBreakpoint(IFile fileName, int lineNumber)
      throws DebugException {
    return new PHPRunToLineBreakpoint(fileName, lineNumber);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.