mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +02:00
indentation.
This commit is contained in:
parent
61d1cb0d3d
commit
8106ea8702
33 changed files with 52 additions and 65 deletions
|
@ -8,5 +8,4 @@ package org.eclipse.cdt.debug.core.cdi;
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
public interface ICDIArgumentObject extends ICDIVariableObject {
|
public interface ICDIArgumentObject extends ICDIVariableObject {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,8 +15,7 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint;
|
||||||
*
|
*
|
||||||
* @since Aug 27, 2002
|
* @since Aug 27, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIBreakpointHit extends ICDISessionObject
|
public interface ICDIBreakpointHit extends ICDISessionObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the breakpoint that stopped the program.
|
* Returns the breakpoint that stopped the program.
|
||||||
*
|
*
|
||||||
|
|
|
@ -12,7 +12,5 @@ package org.eclipse.cdt.debug.core.cdi;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDICatchEvent
|
public interface ICDICatchEvent {
|
||||||
{
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,8 +12,7 @@ package org.eclipse.cdt.debug.core.cdi;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDICondition
|
public interface ICDICondition {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the condition expression.
|
* Returns the condition expression.
|
||||||
*
|
*
|
||||||
|
|
|
@ -11,8 +11,7 @@ package org.eclipse.cdt.debug.core.cdi;
|
||||||
*
|
*
|
||||||
* @since Aug 6, 2002
|
* @since Aug 6, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIConfiguration
|
public interface ICDIConfiguration {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns whether this session supports termination.
|
* Returns whether this session supports termination.
|
||||||
*
|
*
|
||||||
|
|
|
@ -12,6 +12,5 @@ package org.eclipse.cdt.debug.core.cdi;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIEndSteppingRange extends ICDISessionObject
|
public interface ICDIEndSteppingRange extends ICDISessionObject {
|
||||||
{
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,10 +17,10 @@ public interface ICDIErrorInfo extends ICDISessionObject {
|
||||||
/**
|
/**
|
||||||
* Returns the error message.
|
* Returns the error message.
|
||||||
*/
|
*/
|
||||||
public String getMessage();
|
String getMessage();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a more verbatim error message(if any).
|
* Returns a more verbatim error message(if any).
|
||||||
*/
|
*/
|
||||||
public String getDetailMessage();
|
String getDetailMessage();
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,12 +13,13 @@ package org.eclipse.cdt.debug.core.cdi;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIExitInfo extends ICDISessionObject
|
public interface ICDIExitInfo extends ICDISessionObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns an exit code.
|
* Returns an exit code.
|
||||||
*
|
*
|
||||||
* @return an exit code
|
* @return an exit code
|
||||||
*/
|
*/
|
||||||
int getCode();
|
int getCode();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,7 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIWatchpoint;
|
||||||
*
|
*
|
||||||
* @since Aug 27, 2002
|
* @since Aug 27, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIWatchpointScope extends ICDISessionObject
|
public interface ICDIWatchpointScope extends ICDISessionObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the out of scope watchpoint.
|
* Returns the out of scope watchpoint.
|
||||||
*
|
*
|
||||||
|
|
|
@ -14,8 +14,7 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIWatchpoint;
|
||||||
*
|
*
|
||||||
* @since Aug 27, 2002
|
* @since Aug 27, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIWatchpointTrigger extends ICDISessionObject
|
public interface ICDIWatchpointTrigger extends ICDISessionObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the triggered watchpoint.
|
* Returns the triggered watchpoint.
|
||||||
*
|
*
|
||||||
|
|
|
@ -12,6 +12,5 @@ package org.eclipse.cdt.debug.core.cdi.event;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIChangedEvent extends ICDIEvent
|
public interface ICDIChangedEvent extends ICDIEvent {
|
||||||
{
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,5 @@ package org.eclipse.cdt.debug.core.cdi.event;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDICreatedEvent extends ICDIEvent
|
public interface ICDICreatedEvent extends ICDIEvent {
|
||||||
{
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,5 @@ package org.eclipse.cdt.debug.core.cdi.event;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIDestroyedEvent extends ICDIEvent
|
public interface ICDIDestroyedEvent extends ICDIEvent {
|
||||||
{
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,5 @@ package org.eclipse.cdt.debug.core.cdi.event;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIDisconnectedEvent extends ICDIEvent
|
public interface ICDIDisconnectedEvent extends ICDIEvent {
|
||||||
{
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,7 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIObject;
|
||||||
*
|
*
|
||||||
* @since Jul 18, 2002
|
* @since Jul 18, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIEvent
|
public interface ICDIEvent {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* The CDI object on which the event initially occurred.
|
* The CDI object on which the event initially occurred.
|
||||||
*
|
*
|
||||||
|
|
|
@ -13,8 +13,7 @@ package org.eclipse.cdt.debug.core.cdi.event;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIEventListener
|
public interface ICDIEventListener {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Notifies this listener of the given event.
|
* Notifies this listener of the given event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -17,8 +17,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDIExitInfo;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIExitedEvent extends ICDIEvent
|
public interface ICDIExitedEvent extends ICDIEvent {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the information provided by the session when program
|
* Returns the information provided by the session when program
|
||||||
* is exited.
|
* is exited.
|
||||||
|
|
|
@ -10,8 +10,7 @@ package org.eclipse.cdt.debug.core.cdi.event;
|
||||||
* Notifies that the originator has changed.
|
* Notifies that the originator has changed.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public interface ICDIMemoryChangedEvent extends ICDIChangedEvent
|
public interface ICDIMemoryChangedEvent extends ICDIChangedEvent {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* @return the modified addresses.
|
* @return the modified addresses.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -16,6 +16,5 @@ package org.eclipse.cdt.debug.core.cdi.event;
|
||||||
*
|
*
|
||||||
* @since Jul 11, 2002
|
* @since Jul 11, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIRestartedEvent extends ICDIEvent
|
public interface ICDIRestartedEvent extends ICDIEvent {
|
||||||
{
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,8 +26,8 @@ import org.eclipse.cdt.debug.core.cdi.ICDISessionObject;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDISuspendedEvent extends ICDIEvent
|
public interface ICDISuspendedEvent extends ICDIEvent {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the session object that caused the suspension.
|
* Returns the session object that caused the suspension.
|
||||||
*
|
*
|
||||||
|
|
|
@ -22,8 +22,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDICondition;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIBreakpoint extends ICDIObject
|
public interface ICDIBreakpoint extends ICDIObject {
|
||||||
{
|
|
||||||
final static public int REGULAR = 0x0;
|
final static public int REGULAR = 0x0;
|
||||||
final static public int TEMPORARY = 0x1;
|
final static public int TEMPORARY = 0x1;
|
||||||
final static public int HARDWARE = 0x2;
|
final static public int HARDWARE = 0x2;
|
||||||
|
|
|
@ -15,8 +15,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDICatchEvent;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDICatchpoint extends ICDIBreakpoint
|
public interface ICDICatchpoint extends ICDIBreakpoint {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the catch event for this catchpoint.
|
* Returns the catch event for this catchpoint.
|
||||||
*
|
*
|
||||||
|
|
|
@ -12,8 +12,7 @@ package org.eclipse.cdt.debug.core.cdi.model;
|
||||||
*
|
*
|
||||||
* @since Jul 10, 2002
|
* @since Jul 10, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIInstruction extends ICDIObject
|
public interface ICDIInstruction extends ICDIObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the Address.
|
* Returns the Address.
|
||||||
* @return the address.
|
* @return the address.
|
||||||
|
|
|
@ -15,8 +15,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDILocation;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDILocationBreakpoint extends ICDIBreakpoint
|
public interface ICDILocationBreakpoint extends ICDIBreakpoint {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the location of this breakpoint.
|
* Returns the location of this breakpoint.
|
||||||
*
|
*
|
||||||
|
|
|
@ -15,8 +15,7 @@ import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||||
*
|
*
|
||||||
* @since Jul 18, 2002
|
* @since Jul 18, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIMemoryBlock extends ICDIObject
|
public interface ICDIMemoryBlock extends ICDIObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the start address of this memory block.
|
* Returns the start address of this memory block.
|
||||||
*
|
*
|
||||||
|
|
|
@ -11,8 +11,7 @@ package org.eclipse.cdt.debug.core.cdi.model;
|
||||||
*
|
*
|
||||||
* @since Jul 8, 2002
|
* @since Jul 8, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIObject
|
public interface ICDIObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the target this object is contained in.
|
* Returns the target this object is contained in.
|
||||||
*
|
*
|
||||||
|
|
|
@ -11,7 +11,5 @@ package org.eclipse.cdt.debug.core.cdi.model;
|
||||||
*
|
*
|
||||||
* @since Aug 9, 2002
|
* @since Aug 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIPointerValue extends ICDIValue
|
public interface ICDIPointerValue extends ICDIValue {
|
||||||
{
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,7 @@ import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIRegisterGroup extends ICDIObject
|
public interface ICDIRegisterGroup extends ICDIObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the registers in this register group.
|
* Returns the registers in this register group.
|
||||||
*
|
*
|
||||||
|
|
|
@ -17,8 +17,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDILocation;
|
||||||
*
|
*
|
||||||
* @since Jul 8, 2002
|
* @since Jul 8, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIStackFrame extends ICDIObject
|
public interface ICDIStackFrame extends ICDIObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns the location of the instruction pointer in this
|
* Returns the location of the instruction pointer in this
|
||||||
* stack frame.
|
* stack frame.
|
||||||
|
@ -45,6 +44,13 @@ public interface ICDIStackFrame extends ICDIObject
|
||||||
*/
|
*/
|
||||||
ICDIArgument[] getArguments() throws CDIException;
|
ICDIArgument[] getArguments() throws CDIException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the thread this stackframe is contained in.
|
||||||
|
*
|
||||||
|
* @return the thread
|
||||||
|
*/
|
||||||
|
ICDIThread getThread();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the level of the stack frame.
|
* Returns the level of the stack frame.
|
||||||
*
|
*
|
||||||
|
|
|
@ -12,6 +12,5 @@ package org.eclipse.cdt.debug.core.cdi.model;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIStaticVariable extends ICDIVariable
|
public interface ICDIStaticVariable extends ICDIVariable {
|
||||||
{
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,8 +15,7 @@ import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIValue extends ICDIObject
|
public interface ICDIValue extends ICDIObject {
|
||||||
{
|
|
||||||
/**
|
/**
|
||||||
* Returns a description of the type of data this value contains.
|
* Returns a description of the type of data this value contains.
|
||||||
*
|
*
|
||||||
|
|
|
@ -16,6 +16,16 @@ import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIVariable extends ICDIObject {
|
public interface ICDIVariable extends ICDIObject {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the stackframe where the variable was found
|
||||||
|
* may return null.
|
||||||
|
*
|
||||||
|
* @return the stackframe
|
||||||
|
* @throws CDIException if this method fails. Reasons include:
|
||||||
|
*/
|
||||||
|
ICDIStackFrame getStackFrame() throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the name of this variable.
|
* Returns the name of this variable.
|
||||||
*
|
*
|
||||||
|
|
|
@ -14,8 +14,7 @@ import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||||
*
|
*
|
||||||
* @since Jul 9, 2002
|
* @since Jul 9, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIWatchpoint extends ICDIBreakpoint
|
public interface ICDIWatchpoint extends ICDIBreakpoint {
|
||||||
{
|
|
||||||
final static public int WRITE = 0x1;
|
final static public int WRITE = 0x1;
|
||||||
final static public int READ = 0x2;
|
final static public int READ = 0x2;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue