(JSONObject source)
| 111 | StringList exhaustive; |
| 112 | |
| 113 | WordList(JSONObject source) { |
| 114 | name = source.getString("name"); |
| 115 | notes = source.getString("notes"); |
| 116 | prefixes = source.getStringList("prefixes"); |
| 117 | suffixes = source.getStringList("suffixes"); |
| 118 | } |
| 119 | |
| 120 | String getPair() { |
| 121 | return (prefixes.choice() + " " + suffixes.choice()).replace(' ', '_'); |
nothing calls this directly
no test coverage detected