Returns on array containing the ROIs in this Overlay.
()
| 158 | |
| 159 | /** Returns on array containing the ROIs in this Overlay. */ |
| 160 | public Roi[] toArray() { |
| 161 | Roi[] array = new Roi[list.size()]; |
| 162 | return (Roi[])list.toArray(array); |
| 163 | } |
| 164 | |
| 165 | /** Returns on array containing the ROIs with the specified indexes. */ |
| 166 | public Roi[] toArray(int[] indexes) { |
no test coverage detected