Save the image as comma or tab-delimited text using a save file dialog. Returns false if the user selects cancel.
()
| 576 | /** Save the image as comma or tab-delimited text using a save |
| 577 | file dialog. Returns false if the user selects cancel. */ |
| 578 | public boolean saveAsText() { |
| 579 | String path = getPath("Text", ".csv"); |
| 580 | if (path==null) |
| 581 | return false; |
| 582 | return saveAsText(path); |
| 583 | } |
| 584 | |
| 585 | /** Save the image as tab-delimited text using the specified path. */ |
| 586 | public boolean saveAsText(String path) { |
no test coverage detected