This plugin displays the contents of a text file in a window.
| 10 | |
| 11 | /** This plugin displays the contents of a text file in a window. */ |
| 12 | public class TextFileReader implements PlugIn { |
| 13 | |
| 14 | public void run(String arg) { |
| 15 | new ij.text.TextWindow(arg,400,450); |
| 16 | } |
| 17 | |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected