Пример #1
0
 @Override
 public Set<ParameterSelection> getAllParameterConfigurations() {
   Set<ParameterSelection> result = new HashSet<ParameterSelection>();
   for (DatasetRow wr : rows) {
     result.addAll(wr.getAllParameterConfigurations());
   }
   return result;
 }