Examples of ICWatchpoint


Examples of org.eclipse.cdt.debug.core.model.ICWatchpoint

  @Override
    protected void createWatchpoint( boolean interactive, IWorkbenchPart part, String sourceHandle, IResource resource,
        int charStart, int charEnd, int lineNumber, String expression, String memorySpace, String range) throws CoreException
    {
        ICWatchpoint bp = CDIDebugModel.createBlankWatchpoint();
        Map<String, Object> attributes = new HashMap<String, Object>();
        CDIDebugModel.setWatchPointAttributes(attributes, sourceHandle, resource, true, false,
            expression, memorySpace, new BigInteger(range), true, 0, ""); //$NON-NLS-1$
        openBreakpointPropertiesDialog(bp, part, resource, attributes);
  }
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.