1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Bug 329724: New method added to CommandFactory

This commit is contained in:
Marc Khouzam 2010-11-30 14:42:49 +00:00
parent 598422cac4
commit 71ddec1100

View file

@ -565,6 +565,11 @@ public class CommandFactory {
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) {
return new MIGDBSetAutoSolib(ctx, isSet);
}