()
| 1263 | private final String SELECTED_DECK_DELIMITER = "::"; |
| 1264 | |
| 1265 | public void saveState() { |
| 1266 | if (stateSetting == null) { |
| 1267 | throw new NullPointerException("State setting missing. Specify first using the initialize() method."); |
| 1268 | } |
| 1269 | prefs.setPref(stateSetting, getState()); |
| 1270 | prefs.save(); |
| 1271 | } |
| 1272 | |
| 1273 | private String getState() { |
| 1274 | StringBuilder state = new StringBuilder(); |
no test coverage detected