|
Lines 41-46
Link Here
|
| 41 |
import org.eclipse.cdt.dsf.mi.service.command.commands.CLIThread; |
41 |
import org.eclipse.cdt.dsf.mi.service.command.commands.CLIThread; |
| 42 |
import org.eclipse.cdt.dsf.mi.service.command.commands.CLITrace; |
42 |
import org.eclipse.cdt.dsf.mi.service.command.commands.CLITrace; |
| 43 |
import org.eclipse.cdt.dsf.mi.service.command.commands.CLIUnsetEnv; |
43 |
import org.eclipse.cdt.dsf.mi.service.command.commands.CLIUnsetEnv; |
|
|
44 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIAddInferior; |
| 44 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIBreakAfter; |
45 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIBreakAfter; |
| 45 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIBreakCommands; |
46 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIBreakCommands; |
| 46 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIBreakCondition; |
47 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIBreakCondition; |
|
Lines 94-99
Link Here
|
| 94 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIInterpreterExec; |
95 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIInterpreterExec; |
| 95 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIInterpreterExecConsole; |
96 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIInterpreterExecConsole; |
| 96 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIListThreadGroups; |
97 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIListThreadGroups; |
|
|
98 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIRemoveInferior; |
| 97 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIStackInfoDepth; |
99 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIStackInfoDepth; |
| 98 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIStackListArguments; |
100 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIStackListArguments; |
| 99 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIStackListFrames; |
101 |
import org.eclipse.cdt.dsf.mi.service.command.commands.MIStackListFrames; |
|
Lines 136-141
Link Here
|
| 136 |
import org.eclipse.cdt.dsf.mi.service.command.output.CLIInfoThreadsInfo; |
138 |
import org.eclipse.cdt.dsf.mi.service.command.output.CLIInfoThreadsInfo; |
| 137 |
import org.eclipse.cdt.dsf.mi.service.command.output.CLIThreadInfo; |
139 |
import org.eclipse.cdt.dsf.mi.service.command.output.CLIThreadInfo; |
| 138 |
import org.eclipse.cdt.dsf.mi.service.command.output.CLITraceInfo; |
140 |
import org.eclipse.cdt.dsf.mi.service.command.output.CLITraceInfo; |
|
|
141 |
import org.eclipse.cdt.dsf.mi.service.command.output.MIAddInferiorInfo; |
| 139 |
import org.eclipse.cdt.dsf.mi.service.command.output.MIBreakInsertInfo; |
142 |
import org.eclipse.cdt.dsf.mi.service.command.output.MIBreakInsertInfo; |
| 140 |
import org.eclipse.cdt.dsf.mi.service.command.output.MIBreakListInfo; |
143 |
import org.eclipse.cdt.dsf.mi.service.command.output.MIBreakListInfo; |
| 141 |
import org.eclipse.cdt.dsf.mi.service.command.output.MIDataDisassembleInfo; |
144 |
import org.eclipse.cdt.dsf.mi.service.command.output.MIDataDisassembleInfo; |
|
Lines 252-257
Link Here
|
| 252 |
return new CLIUnsetEnv(ctx, name); |
255 |
return new CLIUnsetEnv(ctx, name); |
| 253 |
} |
256 |
} |
| 254 |
|
257 |
|
|
|
258 |
/** @since 4.0 */ |
| 259 |
public ICommand<MIAddInferiorInfo> createMIAddInferior(ICommandControlDMContext ctx) { |
| 260 |
return new MIAddInferior(ctx); |
| 261 |
} |
| 262 |
|
| 255 |
public ICommand<MIInfo> createMIBreakAfter(IBreakpointsTargetDMContext ctx, int breakpoint, int ignoreCount) { |
263 |
public ICommand<MIInfo> createMIBreakAfter(IBreakpointsTargetDMContext ctx, int breakpoint, int ignoreCount) { |
| 256 |
return new MIBreakAfter(ctx, breakpoint, ignoreCount); |
264 |
return new MIBreakAfter(ctx, breakpoint, ignoreCount); |
| 257 |
} |
265 |
} |
|
Lines 592-597
Link Here
|
| 592 |
return new MIListThreadGroups(ctx, listAll); |
600 |
return new MIListThreadGroups(ctx, listAll); |
| 593 |
} |
601 |
} |
| 594 |
|
602 |
|
|
|
603 |
/** @since 4.0 */ |
| 604 |
public ICommand<MIInfo> createMIRemoveInferior(ICommandControlDMContext ctx, String groupId) { |
| 605 |
return new MIRemoveInferior(ctx, groupId); |
| 606 |
} |
| 607 |
|
| 595 |
public ICommand<MIStackInfoDepthInfo> createMIStackInfoDepth(IMIExecutionDMContext ctx) { |
608 |
public ICommand<MIStackInfoDepthInfo> createMIStackInfoDepth(IMIExecutionDMContext ctx) { |
| 596 |
return new MIStackInfoDepth(ctx); |
609 |
return new MIStackInfoDepth(ctx); |
| 597 |
} |
610 |
} |