Adds an ROI to this Overlay.
(Roi roi)
| 42 | |
| 43 | /** Adds an ROI to this Overlay. */ |
| 44 | public void add(Roi roi) { |
| 45 | if (roi!=null) |
| 46 | list.add(roi); |
| 47 | } |
| 48 | |
| 49 | /** Adds an ROI to this Overlay using the specified name. */ |
| 50 | public void add(Roi roi, String name) { |
no test coverage detected