Examples of ICFunctionBreakpoint


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

  @Override
  protected void createFunctionBreakpoint(boolean interactive, IWorkbenchPart part, String sourceHandle,
      IResource resource, String functionName, int charStart, int charEnd, int lineNumber ) throws CoreException
  {
        if (interactive) {
            ICFunctionBreakpoint bp = CDIDebugModel.createBlankFunctionBreakpoint();
            Map<String, Object> attributes = new HashMap<String, Object>();
            CDIDebugModel.setFunctionBreakpointAttributes( attributes, sourceHandle, getBreakpointType(), functionName,
                charStart, charEnd, lineNumber, true, 0, "" ); //$NON-NLS-1$
            openBreakpointPropertiesDialog(bp, part, resource, attributes);
        } else {     
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.