/* * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.deskclock.worldclock; import android.content.SharedPreferences; public class CityObj { private static final String CITY_NAME = "city_name_"; private static final String CITY_TIME_ZONE = "city_tz_"; private static final String CITY_ID = "city_id_"; private static final String CITY_INDEX = "city_index_"; public String mCityName; public String mTimeZone; public String mCityId; public String mCityIndex; public boolean isHeader; public CityObj(String name, String timezone, String id, String index) { mCityName = name; mTimeZone = timezone; mCityId = id; mCityIndex = index; } @Override public String toString() { return "CityObj{" + "name=" + mCityName + ", timezone=" + mTimeZone + ", id=" + mCityId + ", index=" + mCityIndex + '}'; } public CityObj(SharedPreferences prefs, int index) { mCityName = prefs.getString(CITY_NAME + index, null); mTimeZone = prefs.getString(CITY_TIME_ZONE + index, null); mCityId = prefs.getString(CITY_ID + index, null); mCityIndex = prefs.getString(CITY_INDEX + index, null); } public void saveCityToSharedPrefs(SharedPreferences.Editor editor, int index) { editor.putString(CITY_NAME + index, mCityName); editor.putString(CITY_TIME_ZONE + index, mTimeZone); editor.putString(CITY_ID + index, mCityId); editor.putString(CITY_INDEX + index, mCityIndex); } }