Adds an element to the TEXTS and LOOKUP.
(String text, int type)
| 1356 | * Adds an element to the TEXTS and LOOKUP. |
| 1357 | */ |
| 1358 | private static void addTranslation(String text, int type) { |
| 1359 | TEXTS.put(type, text); |
| 1360 | LOOKUP.put(text, type); |
| 1361 | } |
| 1362 | |
| 1363 | /** |
| 1364 | * Adds an element to the KEYWORDS, TEXTS and LOOKUP. |
no test coverage detected