mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 04:45:38 +02:00
Bug 329724: New method added to CommandFactory
This commit is contained in:
parent
598422cac4
commit
71ddec1100
1 changed files with 5 additions and 0 deletions
|
@ -565,6 +565,11 @@ public class CommandFactory {
|
||||||
return new MIGDBSetArgs(dmc, arguments);
|
return new MIGDBSetArgs(dmc, arguments);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @since 4.0 */
|
||||||
|
public ICommand<MIInfo> createMIGDBSetArgs(ICommandControlDMContext dmc, String[] arguments) {
|
||||||
|
return new MIGDBSetArgs(dmc, arguments);
|
||||||
|
}
|
||||||
|
|
||||||
public ICommand<MIInfo> createMIGDBSetAutoSolib(ICommandControlDMContext ctx, boolean isSet) {
|
public ICommand<MIInfo> createMIGDBSetAutoSolib(ICommandControlDMContext ctx, boolean isSet) {
|
||||||
return new MIGDBSetAutoSolib(ctx, isSet);
|
return new MIGDBSetAutoSolib(ctx, isSet);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue