blob: 18cce9cf218191f7a39b018e6e8ac1eb0d4b913a [file] [log] [blame]
/**
* Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
*
* Author: Alexandre Savard <alexandre.savard@savoirfairelinux.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* If you own a pjsip commercial license you can also redistribute it
* and/or modify it under the terms of the GNU Lesser General Public License
* as an android library.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.sflphone.account;
import java.util.ArrayList;
import java.util.HashMap;
public interface AccountDetail {
public static final String TRUE_STR = "true";
public static final String FALSE_STR = "false";
public static class PreferenceEntry {
public String mKey;
public boolean isTwoState;
public String mValue;
public PreferenceEntry(String key) {
mKey = key;
isTwoState = false;
mValue = "";
}
public PreferenceEntry(String key, boolean twoState) {
mKey = key;
isTwoState = twoState;
mValue = "";
}
public PreferenceEntry(String key, boolean twoState, String value) {
mKey = key;
isTwoState = twoState;
mValue = value;
}
public boolean isChecked() {
if (mValue.contentEquals("true"))
return true;
return false;
}
}
public static final String TAG = "PreferenceHashMap";
public ArrayList<PreferenceEntry> getDetailValues();
public ArrayList<String> getValuesOnly();
public HashMap<String, String> getDetailsHashMap();
public String getDetailString(String key);
public void setDetailString(String key, String newValue);
}