1 11 package org.eclipse.jdt.debug.core; 12 13 14 import org.eclipse.core.runtime.CoreException; 15 import org.eclipse.debug.core.model.ILineBreakpoint; 16 17 18 26 public interface IJavaLineBreakpoint extends IJavaBreakpoint, ILineBreakpoint { 27 28 35 public boolean supportsCondition(); 36 44 public String getCondition() throws CoreException; 45 59 public void setCondition(String condition) throws CoreException; 60 67 public boolean isConditionEnabled() throws CoreException; 68 77 public void setConditionEnabled(boolean enabled) throws CoreException; 78 89 public boolean isConditionSuspendOnTrue() throws CoreException; 90 100 public void setConditionSuspendOnTrue(boolean suspendOnTrue) throws CoreException; 101 102 } 103 104 | Popular Tags |