blob: 1782513db59eab891333b5bc33f79a406de128e5 [file] [log] [blame]
package org.eclipse.jdt.debug.core;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jdt.core.IMethod;
/**
* Method entry breakpoints are java line breakpoints that
* suspend execution when a specific method is entered. Method
* entry breakpoints can only be set on binaries.
*
* Clients are not intended to implement this interface.
*/
public interface IJavaMethodEntryBreakpoint extends IJavaLineBreakpoint {
/**
* Returns the method this entry breakpoint is located in.
*
* @return the method this entry breakpoint is located in
* @exception CoreException if a <code>CoreException</code> is
* thrown accessing this breakpoint's underlying marker
*/
public IMethod getMethod() throws CoreException;
}