コード例 #1
0
ファイル: SavedState.java プロジェクト: reckter/NetworkSpace
 /**
  * Load the data from file/muffin
  *
  * @throws java.io.IOException Indicates it wasn't possible to load the state
  */
 public void load() throws IOException {
   numericData = muffin.loadFile(fileName + "_Number");
   stringData = muffin.loadFile(fileName + "_String");
 }
コード例 #2
0
ファイル: SavedState.java プロジェクト: reckter/NetworkSpace
 /**
  * Save the stored data to file/muffin
  *
  * @throws java.io.IOException Indicates it wasn't possible to store the state
  */
 public void save() throws IOException {
   muffin.saveFile(numericData, fileName + "_Number");
   muffin.saveFile(stringData, fileName + "_String");
 }