()
| 38 | } |
| 39 | |
| 40 | boolean showDialog() { |
| 41 | OpenDialog od = new OpenDialog("Open Text Image...", null); |
| 42 | directory = od.getDirectory(); |
| 43 | name = od.getFileName(); |
| 44 | if (name!=null) |
| 45 | path = directory + name; |
| 46 | return name!=null; |
| 47 | } |
| 48 | |
| 49 | /** Displays a file open dialog and opens the specified text file as a float image. */ |
| 50 | public ImageProcessor open() { |
no test coverage detected