mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-05 08:46:02 +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
|
@Override
|
||||||
public void canResume(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
|
public void canResume(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
|
||||||
if (fGdb.getSessionType() == SessionType.CORE) {
|
if (fGdb.getSessionType() == SessionType.CORE) {
|
||||||
|
@ -199,6 +202,9 @@ public class GDBRunControl extends MIRunControl {
|
||||||
super.canResume(context, rm);
|
super.canResume(context, rm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 2.0
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void canSuspend(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
|
public void canSuspend(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
|
||||||
if (fGdb.getSessionType() == SessionType.CORE) {
|
if (fGdb.getSessionType() == SessionType.CORE) {
|
||||||
|
@ -209,6 +215,9 @@ public class GDBRunControl extends MIRunControl {
|
||||||
super.canSuspend(context, rm);
|
super.canSuspend(context, rm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 2.0
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void canStep(final IExecutionDMContext context, StepType stepType, final DataRequestMonitor<Boolean> rm) {
|
public void canStep(final IExecutionDMContext context, StepType stepType, final DataRequestMonitor<Boolean> rm) {
|
||||||
if (fGdb.getSessionType() == SessionType.CORE) {
|
if (fGdb.getSessionType() == SessionType.CORE) {
|
||||||
|
|
|
@ -174,6 +174,9 @@ public class GDBRunControl_7_0 extends MIRunControl implements IReverseRunContro
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 2.0
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void canResume(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
|
public void canResume(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
|
||||||
if (fGdb.getSessionType() == SessionType.CORE) {
|
if (fGdb.getSessionType() == SessionType.CORE) {
|
||||||
|
@ -184,6 +187,9 @@ public class GDBRunControl_7_0 extends MIRunControl implements IReverseRunContro
|
||||||
super.canResume(context, rm);
|
super.canResume(context, rm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 2.0
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void canSuspend(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
|
public void canSuspend(IExecutionDMContext context, DataRequestMonitor<Boolean> rm) {
|
||||||
if (fGdb.getSessionType() == SessionType.CORE) {
|
if (fGdb.getSessionType() == SessionType.CORE) {
|
||||||
|
@ -194,6 +200,9 @@ public class GDBRunControl_7_0 extends MIRunControl implements IReverseRunContro
|
||||||
super.canSuspend(context, rm);
|
super.canSuspend(context, rm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 2.0
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void canStep(final IExecutionDMContext context, StepType stepType, final DataRequestMonitor<Boolean> rm) {
|
public void canStep(final IExecutionDMContext context, StepType stepType, final DataRequestMonitor<Boolean> rm) {
|
||||||
if (fGdb.getSessionType() == SessionType.CORE) {
|
if (fGdb.getSessionType() == SessionType.CORE) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue