1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +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.
* *
@ -28,13 +27,13 @@ public interface ICDITarget extends ICDIObject
*/ */
ICDISession getSession(); ICDISession getSession();
/** /**
* Gets the target process. * Gets the target process.
* *
* @return the output stream connected to the normal input of the * @return the output stream connected to the normal input of the
* target process. * target process.
*/ */
Process getProcess(); Process getProcess();
/** /**
* Returns the shared libraries loaded in this target. * Returns the shared libraries loaded in this target.
@ -55,16 +54,7 @@ public interface ICDITarget extends ICDIObject
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
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.
@ -92,7 +83,7 @@ public interface ICDITarget extends ICDIObject
* @return a collection of global variables * @return a collection of global variables
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
ICDIGlobalVariable[] getGlobalVariables() throws CDIException; ICDIGlobalVariable[] getGlobalVariables() throws CDIException;
/** /**
* Evaluates the expression specified by the given string. * Evaluates the expression specified by the given string.
@ -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,15 +104,16 @@ 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.
* *
* @return whether this target is terminated * @return whether this target is terminated
*/ */
boolean isTerminated(); boolean isTerminated();
/** /**
* Causes this target to terminate. * Causes this target to terminate.
* *
@ -157,7 +150,7 @@ public interface ICDITarget extends ICDIObject
* @return whether this target is currently suspended * @return whether this target is currently suspended
*/ */
boolean isSuspended(); boolean isSuspended();
/** /**
* Causes this target to resume its execution. * Causes this target to resume its execution.
* Has no effect on a target that is not suspended. * Has no effect on a target that is not suspended.
@ -165,7 +158,7 @@ public interface ICDITarget extends ICDIObject
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
void resume() throws CDIException; void resume() throws CDIException;
/** /**
* Causes this target to suspend its execution. * Causes this target to suspend its execution.
* Has no effect on an already suspended target. * Has no effect on an already suspended target.
@ -181,7 +174,7 @@ public interface ICDITarget extends ICDIObject
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
void stepOver() throws CDIException; void stepOver() throws CDIException;
/** /**
* Steps into the current source line. Can only be called * Steps into the current source line. Can only be called
* when the associated target is suspended. * when the associated target is suspended.
@ -189,7 +182,7 @@ public interface ICDITarget extends ICDIObject
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
void stepInto() throws CDIException; void stepInto() throws CDIException;
/** /**
* Steps over the current machine instruction. Can only be called * Steps over the current machine instruction. Can only be called
* when the associated target is suspended. * when the associated target is suspended.
@ -197,7 +190,7 @@ public interface ICDITarget extends ICDIObject
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
void stepOverInstruction() throws CDIException; void stepOverInstruction() throws CDIException;
/** /**
* Steps into the current machine instruction. Can only be called * Steps into the current machine instruction. Can only be called
* when the associated target is suspended. * when the associated target is suspended.
@ -205,7 +198,7 @@ public interface ICDITarget extends ICDIObject
* @throws CDIException if this method fails. Reasons include: * @throws CDIException if this method fails. Reasons include:
*/ */
void stepIntoInstruction() throws CDIException; void stepIntoInstruction() throws CDIException;
/** /**
* Continues running until just after function in the current * Continues running until just after function in the current
* stack frame returns. Can only be called when the associated * stack frame returns. Can only be called when the associated