1 11 package org.eclipse.jdt.debug.core; 12 13 14 import org.eclipse.core.runtime.CoreException; 15 import org.eclipse.debug.core.model.IDebugTarget; 16 17 25 public interface IJavaMethodBreakpoint extends IJavaLineBreakpoint { 26 27 38 public String getMethodName() throws CoreException; 39 40 51 public String getMethodSignature() throws CoreException; 52 53 64 public String getTypeName() throws CoreException; 65 66 75 public boolean isEntry() throws CoreException; 76 77 86 public boolean isExit() throws CoreException; 87 88 97 public void setEntry(boolean entry) throws CoreException; 98 99 108 public void setExit(boolean exit) throws CoreException; 109 110 119 public void setNativeOnly(boolean nativeOnly) throws CoreException; 120 121 130 public boolean isNativeOnly() throws CoreException; 131 132 142 public boolean isEntrySuspend(IDebugTarget target); 143 } 144 145 | Popular Tags |