Package org.eclipse.jdt.internal.debug.core.breakpoints

Examples of org.eclipse.jdt.internal.debug.core.breakpoints.JavaLineBreakpoint


    // listeners
    // should only be notified when a condition is true (i.e. when the
    // breakpoint
    // is really hit).
    if (breakpoint instanceof JavaLineBreakpoint) {
      JavaLineBreakpoint lbp = (JavaLineBreakpoint) breakpoint;
      // evaluate condition unless we're in an evaluation already (bug
      // 284022)
      if (lbp.hasCondition() && !isPerformingEvaluation()) {
        ConditionalBreakpointHandler handler = new ConditionalBreakpointHandler();
        int vote = handler.breakpointHit(this, breakpoint);
        if (vote == IJavaBreakpointListener.DONT_SUSPEND) {
          // condition is false, breakpoint is not hit
          synchronized (this) {
View Full Code Here


      int hitCount, boolean register, Map<String, Object> attributes)
      throws CoreException {
    if (attributes == null) {
      attributes = new HashMap<String, Object>(10);
    }
    return new JavaLineBreakpoint(resource, typeName, lineNumber,
        charStart, charEnd, hitCount, register, attributes);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.debug.core.breakpoints.JavaLineBreakpoint

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.