1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

2004-10-18 Alain Magloire

Make ICDIRuntimeOptions be part of ICDITarget
	* cdi/org/eclipse/cdt/debug/core/cdi/ICDISession.java
	* cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java
	* cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIRuntimeOptions.java
This commit is contained in:
Alain Magloire 2004-10-18 23:17:46 +00:00
parent cad896ca60
commit f12b1a1d87
4 changed files with 17 additions and 9 deletions

View file

@ -1,3 +1,9 @@
2004-10-18 Alain Magloire
Make ICDIRuntimeOptions be part of ICDITarget
* cdi/org/eclipse/cdt/debug/core/cdi/ICDISession.java
* cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java
* cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIRuntimeOptions.java
2004-10-18 David Inglis 2004-10-18 David Inglis
Update to new ICDIDebugger interface deprecating old Update to new ICDIDebugger interface deprecating old

View file

@ -109,13 +109,6 @@ public interface ICDISession {
*/ */
ICDIConfiguration getConfiguration(); ICDIConfiguration getConfiguration();
/**
* Returns the Runtime options for this debug session.
*
* @return the configuration description
*/
ICDIRuntimeOptions getRuntimeOptions();
/** /**
* Causes this element to terminate, generating a <code>KIND_TERMINATE</code> event. * Causes this element to terminate, generating a <code>KIND_TERMINATE</code> event.
* *

View file

@ -9,16 +9,18 @@
* QNX Software Systems - Initial API and implementation * QNX Software Systems - Initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.debug.core.cdi; package org.eclipse.cdt.debug.core.cdi.model;
import java.util.Properties; import java.util.Properties;
import org.eclipse.cdt.debug.core.cdi.CDIException;
/** /**
* Describes the configuration of debug session. * Describes the configuration of debug session.
* *
* @since Aug 6, 2002 * @since Aug 6, 2002
*/ */
public interface ICDIRuntimeOptions { public interface ICDIRuntimeOptions extends ICDIObject {
/** /**
* Program/Inferior arguments. * Program/Inferior arguments.

View file

@ -163,6 +163,13 @@ public interface ICDITarget extends ICDIThreadGroup, ICDISessionObject {
*/ */
void signal(ICDISignal signal) throws CDIException; void signal(ICDISignal signal) throws CDIException;
/**
* Returns the Runtime options for this target debug session.
*
* @return the configuration description
*/
ICDIRuntimeOptions getRuntimeOptions();
/** /**
* Return a ICDICondition * Return a ICDICondition
*/ */