()
| 4602 | } |
| 4603 | |
| 4604 | private void openSequence() { |
| 4605 | String path = getFirstString(); |
| 4606 | String options = ""; |
| 4607 | if (interp.nextToken()==',') |
| 4608 | options = getNextString(); |
| 4609 | interp.getRightParen(); |
| 4610 | ImagePlus imp = FolderOpener.open(path, options); |
| 4611 | if (imp!=null) |
| 4612 | imp.show(); |
| 4613 | } |
| 4614 | |
| 4615 | String nameWithoutExtension() { |
| 4616 | String name = OpenDialog.getLastName(); |
no test coverage detected