Package civquest.io

Examples of civquest.io.DataToSave


  }

  private static final String TIME_OF_NEXT_SHOT_KEY = "timeOfNextShot";

  public DataToSave getPersistentData() {
    DataToSave data = super.getPersistentData();
    data.put(TIME_OF_NEXT_SHOT_KEY, timeOfNextShot);
    return data;
  }
View Full Code Here


    return retValue;
  }

  public DataToSave getPersistentData() {
    DataToSave data = super.getPersistentData();
    data.put("arrayWidth", arrayWidth);
    data.put("arrayHeight", arrayHeight);
    data.put("diagonalDistance", diagonalDistance);
    data.put("straightDistance", straightDistance);
     return data;
  }
View Full Code Here

 

  private static final String ID_KEY = "id";

  public DataToSave getPersistentData() {
    DataToSave dataToSave = new DataToSave();
    dataToSave.put(ID_KEY, id);
    dataToSave.put(MODEL_NAME_KEY, getModelName());
    return dataToSave;
  }
View Full Code Here

TOP

Related Classes of civquest.io.DataToSave

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.