1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Formating and equals()

This commit is contained in:
Alain Magloire 2002-08-20 04:11:42 +00:00
parent 8a4f0947de
commit 09a6b7e999

View file

@ -16,8 +16,7 @@ import org.eclipse.cdt.debug.core.cdi.CDIException;
* *
* @since Jul 8, 2002 * @since Jul 8, 2002
*/ */
public interface ICDIThread extends ICDIObject public interface ICDIThread extends ICDIObject {
{
/** /**
* Returns the stack frames contained in this thread. An * Returns the stack frames contained in this thread. An
* empty collection is returned if this thread contains * empty collection is returned if this thread contains
@ -92,4 +91,9 @@ public interface ICDIThread extends ICDIObject
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
void finish() throws CDIException; void finish() throws CDIException;
/**
* Returns true if the threads are the same.
*/
boolean equals(ICDIThread thead);
} }