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:
parent
8a4f0947de
commit
09a6b7e999
1 changed files with 13 additions and 9 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue