()
| 105 | } |
| 106 | |
| 107 | private String getExplains() { |
| 108 | if (basic == null) { |
| 109 | return null; |
| 110 | } |
| 111 | String result = null; |
| 112 | List<String> explains = (List<String>) basic.get(EXPLAINS); |
| 113 | if (explains.size() > 0) { |
| 114 | result = ""; |
| 115 | } |
| 116 | for (String explain : explains) { |
| 117 | result += explain + "\n"; |
| 118 | } |
| 119 | return result; |
| 120 | } |
| 121 | |
| 122 | private String getTranslationResult() { |
| 123 | if (translation == null) { |