1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

indentation.

This commit is contained in:
Alain Magloire 2003-01-27 03:29:48 +00:00
parent 61d1cb0d3d
commit 8106ea8702
33 changed files with 52 additions and 65 deletions

View file

@ -8,5 +8,4 @@ package org.eclipse.cdt.debug.core.cdi;
/** /**
*/ */
public interface ICDIArgumentObject extends ICDIVariableObject { public interface ICDIArgumentObject extends ICDIVariableObject {
} }

View file

@ -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.
* *

View file

@ -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 {
{
} }

View file

@ -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.
* *

View file

@ -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.
* *

View file

@ -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 {
{
} }

View file

@ -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();
} }

View file

@ -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();
} }

View file

@ -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.
* *

View file

@ -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.
* *

View file

@ -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 {
{
} }

View file

@ -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 {
{
} }

View file

@ -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 {
{
} }

View file

@ -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 {
{
} }

View file

@ -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.
* *

View file

@ -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.
* *

View file

@ -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.

View file

@ -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.
*/ */

View file

@ -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 {
{
} }

View file

@ -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.
* *

View file

@ -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;

View file

@ -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.
* *

View file

@ -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.

View file

@ -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.
* *

View file

@ -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.
* *

View file

@ -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.
* *

View file

@ -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 {
{
} }

View file

@ -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.
* *

View file

@ -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.
* *

View file

@ -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 {
{
} }

View file

@ -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.
* *

View file

@ -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.
* *

View file

@ -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;