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:
parent
e9ab967801
commit
e9154e34f0
2 changed files with 18 additions and 0 deletions
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue