@@ -130,7 +130,7 @@ public TableWrapper(TableData table) {
130130 * @throws AccessException Cannot access data.
131131 * @throws ExecutionException A Facility can't be retrieved or instantiated.
132132 */
133- public TableWrapper (Client client , ResultsTable results , Long imageId , Collection <Roi > ijRois )
133+ public TableWrapper (Client client , ResultsTable results , Long imageId , List <Roi > ijRois )
134134 throws ServiceException , AccessException , ExecutionException {
135135 this (client , results , imageId , ijRois , ROIWrapper .IJ_PROPERTY );
136136 }
@@ -150,7 +150,7 @@ public TableWrapper(Client client, ResultsTable results, Long imageId, Collectio
150150 * @throws AccessException Cannot access data.
151151 * @throws ExecutionException A Facility can't be retrieved or instantiated.
152152 */
153- public TableWrapper (Client client , ResultsTable results , Long imageId , Collection <Roi > ijRois , String roiProperty )
153+ public TableWrapper (Client client , ResultsTable results , Long imageId , List <Roi > ijRois , String roiProperty )
154154 throws ServiceException , AccessException , ExecutionException {
155155 roiProperty = ROIWrapper .checkProperty (roiProperty );
156156
@@ -395,7 +395,7 @@ public String toString() {
395395 * @throws AccessException Cannot access data.
396396 * @throws ExecutionException A Facility can't be retrieved or instantiated.
397397 */
398- public void addRows (Client client , ResultsTable results , Long imageId , Collection <? extends Roi > ijRois )
398+ public void addRows (Client client , ResultsTable results , Long imageId , List < Roi > ijRois )
399399 throws ServiceException , AccessException , ExecutionException {
400400 this .addRows (client , results , imageId , ijRois , ROIWrapper .IJ_PROPERTY );
401401 }
@@ -415,7 +415,7 @@ public void addRows(Client client, ResultsTable results, Long imageId, Collectio
415415 * @throws AccessException Cannot access data.
416416 * @throws ExecutionException A Facility can't be retrieved or instantiated.
417417 */
418- public void addRows (Client client , ResultsTable results , Long imageId , Collection <? extends Roi > ijRois ,
418+ public void addRows (Client client , ResultsTable results , Long imageId , List < Roi > ijRois ,
419419 String roiProperty )
420420 throws ServiceException , AccessException , ExecutionException {
421421 roiProperty = ROIWrapper .checkProperty (roiProperty );
0 commit comments