Package org.eclipse.jdi.internal

Examples of org.eclipse.jdi.internal.LocationImpl


  /* (non-Javadoc)
   * @see com.sun.jdi.request.EventRequestManager#createBreakpointRequest(com.sun.jdi.Location)
   */
  public BreakpointRequest createBreakpointRequest(Location location) throws VMMismatchException {
    LocationImpl locImpl = (LocationImpl)location;
    BreakpointRequestImpl req = new BreakpointRequestImpl(virtualMachineImpl());
    req.addLocationFilter(locImpl);
    BREAKPOINT_TYPE.requests.add(req);
    return req;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jdi.internal.LocationImpl

Copyright © 2018 www.massapicom. 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.