(LoadContext context, AgeSet ageSet)
| 130 | } |
| 131 | |
| 132 | @Override |
| 133 | public String[] unparse(LoadContext context, AgeSet ageSet) |
| 134 | { |
| 135 | Set<String> set = new TreeSet<>(); |
| 136 | for (TransitionChoice<Kit> tc : ageSet.getKits()) |
| 137 | { |
| 138 | String sb = tc.getCount() |
| 139 | + Constants.PIPE |
| 140 | + tc.getChoices().getLSTformat().replaceAll(Constants.COMMA, Constants.PIPE); |
| 141 | set.add(sb); |
| 142 | } |
| 143 | return set.toArray(new String[0]); |
| 144 | } |
| 145 | |
| 146 | @Override |
| 147 | public Class<AgeSet> getTokenClass() |
nothing calls this directly
no test coverage detected