Example #1
0
 /** Save command */
 private void cmdSave() {
   Storage.writeStorage("data.bin", data);
 }
Example #2
0
 /** Quit command */
 private void cmdQuit() {
   Storage.writeStorage("data.bin", data);
   con.quit();
   System.exit(0);
 }