Package org.eclipse.cdt.debug.core.model

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


  @Override
  protected void createLineBreakpoint(boolean interactive, IWorkbenchPart part, String sourceHandle,
      IResource resource, int lineNumber) throws CoreException
  {
      if (interactive) {
          ICLineBreakpoint lineBp = CDIDebugModel.createBlankLineBreakpoint();
          Map<String, Object> attributes = new HashMap<String, Object>();
          CDIDebugModel.setLineBreakpointAttributes(
              attributes, sourceHandle, getBreakpointType(), lineNumber, true, 0, "" ); //$NON-NLS-1$
          openBreakpointPropertiesDialog(lineBp, part, resource, attributes);
      } else {
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.debug.core.model.ICLineBreakpoint

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.