Runs a menu command on a separete thread and returns immediately.
(String command)
| 351 | |
| 352 | /** Runs a menu command on a separete thread and returns immediately. */ |
| 353 | public static void doCommand(String command) { |
| 354 | new Executer(command, null); |
| 355 | } |
| 356 | |
| 357 | /** Runs a menu command on a separete thread, using the specified image. */ |
| 358 | public static void doCommand(ImagePlus imp, String command) { |
no outgoing calls
no test coverage detected