1 11 package org.eclipse.jdt.debug.core; 12 13 14 import org.eclipse.core.runtime.CoreException; 15 16 30 public interface IJavaTargetPatternBreakpoint extends IJavaLineBreakpoint { 31 32 40 public String getPattern(IJavaDebugTarget target); 41 42 50 public void setPattern(IJavaDebugTarget target, String pattern) throws CoreException; 51 52 62 public String getSourceName() throws CoreException; 63 } 64 65 | Popular Tags |