Get the token map @param tokInterface @return the token map
(Class<? extends LstToken> tokInterface)
| 127 | * @return the token map |
| 128 | */ |
| 129 | public Map<String, LstToken> getTokenMap(Class<? extends LstToken> tokInterface) |
| 130 | { |
| 131 | Map<String, LstToken> tokenMap = tokenTypeMap.get(tokInterface); |
| 132 | if (tokenMap == null) |
| 133 | { |
| 134 | tokenMap = new HashMap<>(); |
| 135 | tokenTypeMap.put(tokInterface, tokenMap); |
| 136 | } |
| 137 | return tokenMap; |
| 138 | } |
| 139 | } |
no test coverage detected