mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Some API breaking changes slipped in during the non-stop effort. These changes were not needed so I have reverted them. Mostly it is about protected classes becoming package-private.
This commit is contained in:
parent
c928924a21
commit
8a7f805c57
1 changed files with 8 additions and 24 deletions
|
@ -136,7 +136,7 @@ public class MIRunControl extends AbstractDsfService implements IMIRunControl
|
|||
}
|
||||
|
||||
@Immutable
|
||||
static class ExecutionData implements IExecutionDMData {
|
||||
private static class ExecutionData implements IExecutionDMData {
|
||||
private final StateChangeReason fReason;
|
||||
ExecutionData(StateChangeReason reason) {
|
||||
fReason = reason;
|
||||
|
@ -154,7 +154,7 @@ public class MIRunControl extends AbstractDsfService implements IMIRunControl
|
|||
* @see MIRunControl
|
||||
*/
|
||||
@Immutable
|
||||
static class RunControlEvent<V extends IDMContext, T extends MIEvent<? extends IDMContext>> extends AbstractDMEvent<V>
|
||||
protected static class RunControlEvent<V extends IDMContext, T extends MIEvent<? extends IDMContext>> extends AbstractDMEvent<V>
|
||||
implements IDMEvent<V>, IMIDMEvent
|
||||
{
|
||||
final private T fMIInfo;
|
||||
|
@ -170,7 +170,7 @@ public class MIRunControl extends AbstractDsfService implements IMIRunControl
|
|||
* Indicates that the given thread has been suspended.
|
||||
*/
|
||||
@Immutable
|
||||
static class SuspendedEvent extends RunControlEvent<IExecutionDMContext, MIStoppedEvent>
|
||||
protected static class SuspendedEvent extends RunControlEvent<IExecutionDMContext, MIStoppedEvent>
|
||||
implements ISuspendedDMEvent
|
||||
{
|
||||
SuspendedEvent(IExecutionDMContext ctx, MIStoppedEvent miInfo) {
|
||||
|
@ -197,7 +197,7 @@ public class MIRunControl extends AbstractDsfService implements IMIRunControl
|
|||
}
|
||||
|
||||
@Immutable
|
||||
static class ContainerSuspendedEvent extends SuspendedEvent
|
||||
protected static class ContainerSuspendedEvent extends SuspendedEvent
|
||||
implements IContainerSuspendedDMEvent
|
||||
{
|
||||
final IExecutionDMContext[] triggeringDmcs;
|
||||
|
@ -213,15 +213,7 @@ public class MIRunControl extends AbstractDsfService implements IMIRunControl
|
|||
}
|
||||
|
||||
@Immutable
|
||||
static class ThreadSuspendedEvent extends SuspendedEvent
|
||||
{
|
||||
ThreadSuspendedEvent(IExecutionDMContext executionDmc, MIStoppedEvent miInfo) {
|
||||
super(executionDmc, miInfo);
|
||||
}
|
||||
}
|
||||
|
||||
@Immutable
|
||||
static class ResumedEvent extends RunControlEvent<IExecutionDMContext, MIRunningEvent>
|
||||
protected static class ResumedEvent extends RunControlEvent<IExecutionDMContext, MIRunningEvent>
|
||||
implements IResumedDMEvent
|
||||
{
|
||||
ResumedEvent(IExecutionDMContext ctx, MIRunningEvent miInfo) {
|
||||
|
@ -249,7 +241,7 @@ public class MIRunControl extends AbstractDsfService implements IMIRunControl
|
|||
}
|
||||
|
||||
@Immutable
|
||||
static class ContainerResumedEvent extends ResumedEvent
|
||||
protected static class ContainerResumedEvent extends ResumedEvent
|
||||
implements IContainerResumedDMEvent
|
||||
{
|
||||
final IExecutionDMContext[] triggeringDmcs;
|
||||
|
@ -266,15 +258,7 @@ public class MIRunControl extends AbstractDsfService implements IMIRunControl
|
|||
}
|
||||
|
||||
@Immutable
|
||||
static class ThreadResumedEvent extends ResumedEvent
|
||||
{
|
||||
ThreadResumedEvent(IExecutionDMContext executionDmc, MIRunningEvent miInfo) {
|
||||
super(executionDmc, miInfo);
|
||||
}
|
||||
}
|
||||
|
||||
@Immutable
|
||||
static class StartedDMEvent extends RunControlEvent<IExecutionDMContext,MIThreadCreatedEvent>
|
||||
protected static class StartedDMEvent extends RunControlEvent<IExecutionDMContext,MIThreadCreatedEvent>
|
||||
implements IStartedDMEvent
|
||||
{
|
||||
StartedDMEvent(IMIExecutionDMContext executionDmc, MIThreadCreatedEvent miInfo) {
|
||||
|
@ -283,7 +267,7 @@ public class MIRunControl extends AbstractDsfService implements IMIRunControl
|
|||
}
|
||||
|
||||
@Immutable
|
||||
static class ExitedDMEvent extends RunControlEvent<IExecutionDMContext,MIThreadExitEvent>
|
||||
protected static class ExitedDMEvent extends RunControlEvent<IExecutionDMContext,MIThreadExitEvent>
|
||||
implements IExitedDMEvent
|
||||
{
|
||||
ExitedDMEvent(IMIExecutionDMContext executionDmc, MIThreadExitEvent miInfo) {
|
||||
|
|
Loading…
Add table
Reference in a new issue