Unparse the bonus token. @param obj The object to unparse @return The unparsed string.
(final Object obj)
| 84 | * @return The unparsed string. |
| 85 | */ |
| 86 | @Override |
| 87 | protected String unparseToken(final Object obj) |
| 88 | { |
| 89 | |
| 90 | if (obj.equals(listCheck)) |
| 91 | { |
| 92 | return Constants.LST_PERCENT_LIST; |
| 93 | } |
| 94 | |
| 95 | String token = ((CheckInfo) obj).isBase() ? "BASE." : Constants.EMPTY_STRING; |
| 96 | |
| 97 | return token + ((CheckInfo) obj).getPobj().getLSTformat(false); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Deals with the CheckInfo. |
nothing calls this directly
no test coverage detected