1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Bug 317325: @since tags change for new 4.0 version

This commit is contained in:
Marc Khouzam 2010-07-30 20:08:29 +00:00
parent e67a019e83
commit 98a2fb076f
4 changed files with 6 additions and 6 deletions

View file

@ -288,7 +288,7 @@ public class GdbLaunchDelegate extends AbstractCLaunchDelegate2
/**
* Returns true if the specified version of GDB supports
* non-stop mode.
* @since 3.1
* @since 4.0
*/
protected boolean isNonStopSupportedInGdbVersion(String version) {
if (version.contains(LaunchUtils.MACOS_GDB_MARKER)) {
@ -305,7 +305,7 @@ public class GdbLaunchDelegate extends AbstractCLaunchDelegate2
/**
* Returns true if the specified version of GDB supports
* post-mortem tracing.
* @since 3.1
* @since 4.0
*/
protected boolean isPostMortemTracingSupportedInGdbVersion(String version) {
if (version.contains(LaunchUtils.MACOS_GDB_MARKER)) {

View file

@ -379,7 +379,7 @@ public class GDBControl extends AbstractMIControl implements IGDBControl {
* instead of the -exec-run method.
* This can be overridden to allow for customization.
*
* @since 3.1
* @since 4.0
*/
protected boolean useContinueCommand(ILaunch launch, boolean restart) {
// When doing remote debugging, we use -exec-continue instead of -exec-run

View file

@ -500,7 +500,7 @@ public class GDBControl_7_0 extends AbstractMIControl implements IGDBControl {
* instead of the -exec-run method.
* This can be overridden to allow for customization.
*
* @since 3.1
* @since 4.0
*/
protected boolean useContinueCommand(ILaunch launch, boolean restart) {
// When doing remote debugging, we use -exec-continue instead of -exec-run

View file

@ -417,7 +417,7 @@ public class MIExpressions extends AbstractDsfService implements IExpressions3,
}
/**
* @since 3.1
* @since 4.0
*/
public boolean hasChildren() {
return numChildrenHint > 0;
@ -1170,7 +1170,7 @@ public class MIExpressions extends AbstractDsfService implements IExpressions3,
/* (non-Javadoc)
* @see org.eclipse.cdt.dsf.debug.service.IExpressions3#getExpressionDataExtension(org.eclipse.cdt.dsf.debug.service.IExpressions.IExpressionDMContext, org.eclipse.cdt.dsf.concurrent.DataRequestMonitor)
*/
/** @since 3.1 */
/** @since 4.0 */
public void getExpressionDataExtension(IExpressionDMContext dmc, final DataRequestMonitor<IExpressionDMDataExtension> rm) {
getExpressionData(dmc, new DataRequestMonitor<IExpressionDMData>(getExecutor(), rm) {
@Override