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

Formating?

This commit is contained in:
Alain Magloire 2002-08-20 04:10:59 +00:00
parent c81be1aa39
commit 8a4f0947de

View file

@ -19,8 +19,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDISession;
* *
* @since Jul 8, 2002 * @since Jul 8, 2002
*/ */
public interface ICDITarget extends ICDIObject public interface ICDITarget extends ICDIObject {
{
/** /**
* Returns the debug session this target is contained in. * Returns the debug session this target is contained in.
* *
@ -56,15 +55,6 @@ public interface ICDITarget extends ICDIObject
*/ */
ICDIThread[] getThreads() throws CDIException; ICDIThread[] getThreads() throws CDIException;
/**
* Returns the thread associated with the given id.
*
* @param id - the thread id
* @return the thread associated with the given id
* @throws CDIException if this method fails. Reasons include:
*/
ICDIThread getCurrentThread() throws CDIException;
/** /**
* Returns a memory block that starts at the specified memory * Returns a memory block that starts at the specified memory
* address, with the specified length. * address, with the specified length.
@ -75,7 +65,8 @@ public interface ICDITarget extends ICDIObject
* with the specified length * with the specified length
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
ICDIMemoryBlock getCMemoryBlock( long startAddress, long length ) throws CDIException; ICDIMemoryBlock getCMemoryBlock(long startAddress, long length)
throws CDIException;
/** /**
* Returns the register groups associated with this target. * Returns the register groups associated with this target.
@ -102,7 +93,8 @@ public interface ICDITarget extends ICDIObject
* @return the result of the evaluation * @return the result of the evaluation
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
ICDIValue evaluateExpressionToValue( String expressionText ) throws CDIException; ICDIValue evaluateExpressionToValue(String expressionText)
throws CDIException;
/** /**
* Evaluates the expression specified by the given string. * Evaluates the expression specified by the given string.
@ -112,7 +104,8 @@ public interface ICDITarget extends ICDIObject
* @return the result of the evaluation * @return the result of the evaluation
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
String evaluateExpressionToString( String expressionText ) throws CDIException; String evaluateExpressionToString(String expressionText)
throws CDIException;
/** /**
* Returns whether this target is terminated. * Returns whether this target is terminated.