mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00
Formating?
This commit is contained in:
parent
c81be1aa39
commit
8a4f0947de
1 changed files with 24 additions and 31 deletions
|
@ -19,8 +19,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDISession;
|
|||
*
|
||||
* @since Jul 8, 2002
|
||||
*/
|
||||
public interface ICDITarget extends ICDIObject
|
||||
{
|
||||
public interface ICDITarget extends ICDIObject {
|
||||
/**
|
||||
* Returns the debug session this target is contained in.
|
||||
*
|
||||
|
@ -28,13 +27,13 @@ public interface ICDITarget extends ICDIObject
|
|||
*/
|
||||
ICDISession getSession();
|
||||
|
||||
/**
|
||||
* Gets the target process.
|
||||
*
|
||||
* @return the output stream connected to the normal input of the
|
||||
* target process.
|
||||
*/
|
||||
Process getProcess();
|
||||
/**
|
||||
* Gets the target process.
|
||||
*
|
||||
* @return the output stream connected to the normal input of the
|
||||
* target process.
|
||||
*/
|
||||
Process getProcess();
|
||||
|
||||
/**
|
||||
* Returns the shared libraries loaded in this target.
|
||||
|
@ -56,15 +55,6 @@ public interface ICDITarget extends ICDIObject
|
|||
*/
|
||||
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
|
||||
* address, with the specified length.
|
||||
|
@ -75,7 +65,8 @@ public interface ICDITarget extends ICDIObject
|
|||
* with the specified length
|
||||
* @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.
|
||||
|
@ -102,7 +93,8 @@ public interface ICDITarget extends ICDIObject
|
|||
* @return the result of the evaluation
|
||||
* @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.
|
||||
|
@ -112,7 +104,8 @@ public interface ICDITarget extends ICDIObject
|
|||
* @return the result of the evaluation
|
||||
* @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.
|
||||
|
|
Loading…
Add table
Reference in a new issue