Back to project page kirin-for-android.
The source code is released under:
Apache License
If you think the Android project kirin-for-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.futureplatforms.kirin.generated.preferences; /* ww w . ja v a 2 s .c om*/ import org.json.JSONObject; import org.json.JSONArray; import com.futureplatforms.kirin.generated.preferences.KirinPreferenceListener; /** * Called in response to a settings.commit() */ public interface KirinPreferencesBackend { /** * @param changes {@link JSONObject} * @param deletes {@link JSONArray} */ void updateStoreWithChangesAndDeletes(JSONObject changes, JSONArray deletes); /** * @param listener {@link KirinPreferenceListener} */ void addPreferenceListener(KirinPreferenceListener listener); void removePreferenceListener(); /** * @param preferenceName {@link String} */ void addInterestFor(String preferenceName); /** * @param preferenceName {@link String} */ void removeInterestFor(String preferenceName); }