Adds an ROI to this Overlay.
(Roi roi)
| 61 | |
| 62 | /** Adds an ROI to this Overlay. */ |
| 63 | public void addElement(Roi roi) { |
| 64 | if (roi!=null) |
| 65 | list.add(roi); |
| 66 | } |
| 67 | |
| 68 | /** Replaces the ROI at the specified index. */ |
| 69 | public void set(Roi roi, int index) { |
no test coverage detected