131132133134135136137138139140141
if (choices != null && !choices.isEmpty()) { JsonBuilder selection = new JsonBuilder(); try { selection.array(); for (T choice : choices) { selection.object(); getProvider().toJson(choice, selection); selection.endObject(); }
9899100101102103104105106107108
100101102103104105106107108109110