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:
parent
579f75531e
commit
8fa32c98e8
3 changed files with 17 additions and 0 deletions
|
@ -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
|
2003-04-30 Alain Magloire
|
||||||
|
|
||||||
* src/org/eclipse/cdt/debug/mi/core/MIPlugin.java:
|
* src/org/eclipse/cdt/debug/mi/core/MIPlugin.java:
|
||||||
|
|
|
@ -145,4 +145,10 @@ public class Configuration implements ICDIConfiguration {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see org.eclipse.cdt.debug.core.cdi.ICDIConfiguration#terminateSessionOnExit()
|
||||||
|
*/
|
||||||
|
public boolean terminateSessionOnExit() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,4 +72,10 @@ public class CoreFileConfiguration implements ICDIConfiguration {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see org.eclipse.cdt.debug.core.cdi.ICDIConfiguration#terminateSessionOnExit()
|
||||||
|
*/
|
||||||
|
public boolean terminateSessionOnExit() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue