Package org.eclipse.jdi.internal

Examples of org.eclipse.jdi.internal.ReferenceTypeImpl


   
  /* (non-Javadoc)
   * @see com.sun.jdi.request.EventRequestManager#createExceptionRequest(com.sun.jdi.ReferenceType, boolean, boolean)
   */
  public ExceptionRequest createExceptionRequest(ReferenceType refType, boolean notifyCaught, boolean notifyUncaught) {
    ReferenceTypeImpl refTypeImpl = (ReferenceTypeImpl)refType;
    ExceptionRequestImpl req = new ExceptionRequestImpl(virtualMachineImpl());
    req.addExceptionFilter(refTypeImpl, notifyCaught, notifyUncaught);
    EXCEPTION_TYPE.requests.add(req);
    return req;
  }
View Full Code Here

TOP

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

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.