1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Implementations of the new "terminateSessionOnExit" method of ICDIConfiguration

This commit is contained in:
Mikhail Khodjaiants 2003-05-01 16:22:08 +00:00
parent 579f75531e
commit 8fa32c98e8
3 changed files with 17 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2003-05-01 Mikhail Khodjaiants
Implementations of the new "terminateSessionOnExit" method of ICDIConfiguration.
* Configuration.java
* CoreFileConfiguration.java
2003-04-30 Alain Magloire
* src/org/eclipse/cdt/debug/mi/core/MIPlugin.java:

View file

@ -145,4 +145,10 @@ public class Configuration implements ICDIConfiguration {
return false;
}
/**
* @see org.eclipse.cdt.debug.core.cdi.ICDIConfiguration#terminateSessionOnExit()
*/
public boolean terminateSessionOnExit() {
return true;
}
}

View file

@ -72,4 +72,10 @@ public class CoreFileConfiguration implements ICDIConfiguration {
return false;
}
/**
* @see org.eclipse.cdt.debug.core.cdi.ICDIConfiguration#terminateSessionOnExit()
*/
public boolean terminateSessionOnExit() {
return false;
}
}