Eclipse CDT
Pre-release 3.0

org.eclipse.cdt.debug.core.cdi.model
Interface ICDISignal

All Superinterfaces:
ICDIObject

public interface ICDISignal
extends ICDIObject

Represents a signal.

Since:
Jul 10, 2002

Method Summary
 String getDescription()
          Returns the meaning of this signal.
 String getName()
          Returns the name of this signal.
 void handle(boolean ignore, boolean stop)
          Change the way debugger handles this signal.
 boolean isIgnore()
          if false means program will see the signal.
 boolean isStopSet()
          Means reenter debugger if this signal happens Method isStopSet.
 void signal()
          Continue program giving it this signal.
 
Methods inherited from interface org.eclipse.cdt.debug.core.cdi.model.ICDIObject
getTarget
 

Method Detail

getName

String getName()
Returns the name of this signal.

Returns:
the name of this signal

getDescription

String getDescription()
Returns the meaning of this signal.

Returns:
the meaning of this signal

isIgnore

boolean isIgnore()
if false means program will see the signal. Otherwise program does not know.

Returns:
boolean

isStopSet

boolean isStopSet()
Means reenter debugger if this signal happens Method isStopSet.

Returns:
boolean

signal

void signal()
            throws CDIException
Continue program giving it this signal.

Throws:
CDIException - if this method fails. Reasons include:

handle

void handle(boolean ignore,
            boolean stop)
            throws CDIException
Change the way debugger handles this signal.

Parameters:
ignore - - if true the debugger should not allow your program to see this signal
stop - - if true the debugger should stop your program when this signal happens
Throws:
CDIException - if this method fails. Reasons include:

Eclipse CDT
Pre-release 3.0

Copyright (c) IBM Corp. and others 2004. All Rights Reserved.