1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-04 22:23:28 +02:00

New method createMIHandle().

This commit is contained in:
Alain Magloire 2003-02-01 23:13:20 +00:00
parent 6b7bf3c275
commit d32afc9610

View file

@ -277,6 +277,10 @@ public class CommandFactory {
return new MIInfoSignals(name); return new MIInfoSignals(name);
} }
public MIHandle createMIHandle(String arg) {
return new MIHandle(arg);
}
public MIPType createMIPType(String name) { public MIPType createMIPType(String name) {
return new MIPType(name); return new MIPType(name);
} }