blob: d70d05b5e13ff121f437e2db61901d7197d04d1d [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core.cdi.model;
import org.eclipse.cdt.debug.core.cdi.CDIException;
import org.eclipse.cdt.debug.core.cdi.ICDILocation;
/**
*
* Represents a line, function or address breakpoint.
*
* @since Jul 9, 2002
*/
public interface ICDILocationBreakpoint extends ICDIBreakpoint {
/**
* Returns the location of this breakpoint.
*
* @return the location of this breakpoint
* @throws CDIException if this method fails. Reasons include:
*/
ICDILocation getLocation() throws CDIException;
}