Displays a file open dialog and opens the specified text file as a float image.
()
| 48 | |
| 49 | /** Displays a file open dialog and opens the specified text file as a float image. */ |
| 50 | public ImageProcessor open() { |
| 51 | if (showDialog()) |
| 52 | return open(path); |
| 53 | else |
| 54 | return null; |
| 55 | } |
| 56 | |
| 57 | /** Opens the specified text file as a float image. */ |
| 58 | public ImageProcessor open(String path) { |
no test coverage detected