1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Missing @since tags

This commit is contained in:
Marc Khouzam 2009-06-04 15:20:43 +00:00
parent e9ab967801
commit e9154e34f0
2 changed files with 18 additions and 0 deletions

View file

@ -189,6 +189,9 @@ public class GDBRunControl extends MIRunControl {
}
}
/**
* @since 2.0
*/
@Override
public void canResume(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
if (fGdb.getSessionType() == SessionType.CORE) {
@ -199,6 +202,9 @@ public class GDBRunControl extends MIRunControl {
super.canResume(context, rm);
}
/**
* @since 2.0
*/
@Override
public void canSuspend(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
if (fGdb.getSessionType() == SessionType.CORE) {
@ -209,6 +215,9 @@ public class GDBRunControl extends MIRunControl {
super.canSuspend(context, rm);
}
/**
* @since 2.0
*/
@Override
public void canStep(final IExecutionDMContext context, StepType stepType, final DataRequestMonitor<Boolean> rm) {
if (fGdb.getSessionType() == SessionType.CORE) {

View file

@ -174,6 +174,9 @@ public class GDBRunControl_7_0 extends MIRunControl implements IReverseRunContro
});
}
/**
* @since 2.0
*/
@Override
public void canResume(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
if (fGdb.getSessionType() == SessionType.CORE) {
@ -184,6 +187,9 @@ public class GDBRunControl_7_0 extends MIRunControl implements IReverseRunContro
super.canResume(context, rm);
}
/**
* @since 2.0
*/
@Override
public void canSuspend(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
if (fGdb.getSessionType() == SessionType.CORE) {
@ -194,6 +200,9 @@ public class GDBRunControl_7_0 extends MIRunControl implements IReverseRunContro
super.canSuspend(context, rm);
}
/**
* @since 2.0
*/
@Override
public void canStep(final IExecutionDMContext context, StepType stepType, final DataRequestMonitor<Boolean> rm) {
if (fGdb.getSessionType() == SessionType.CORE) {