Runs an ImageJ command. Does not return until the command has finished executing. To avoid "image locked", errors, plugins that call this method should implement the PlugIn interface instead of PlugInFilter.
(String command)
| 364 | errors, plugins that call this method should implement |
| 365 | the PlugIn interface instead of PlugInFilter. */ |
| 366 | public static void run(String command) { |
| 367 | run(command, null); |
| 368 | } |
| 369 | |
| 370 | /** Runs an ImageJ command, with options that are passed to the |
| 371 | GenericDialog and OpenDialog classes. Does not return until |
no test coverage detected