Opens a text file in ij.jar as a String (example path: "/macros/Circle_Tool.txt").
(String path)
| 364 | |
| 365 | /** Opens a text file in ij.jar as a String (example path: "/macros/Circle_Tool.txt"). */ |
| 366 | public static String openFromIJJarAsString(String path) { |
| 367 | return (new ij.plugin.MacroInstaller()).openFromIJJar(path); |
| 368 | } |
| 369 | |
| 370 | /** Copies the contents of the file at 'path1' to 'path2', returning an error message |
| 371 | (as a non-empty string) if there is an error. Based on the method with the |
no test coverage detected