Removes the ROI with the specified index from this Overlay.
(int index)
| 75 | |
| 76 | /** Removes the ROI with the specified index from this Overlay. */ |
| 77 | public void remove(int index) { |
| 78 | if (index>=0) |
| 79 | list.remove(index); |
| 80 | } |
| 81 | |
| 82 | /** Removes the specified ROI from this Overlay. */ |
| 83 | public void remove(Roi roi) { |
no test coverage detected