Preference API
For more information on the Preferences features, see Preferences Guide.
Since: 3.0
Table of Contents
- 1. Type Definitions
- 1.1. PreferenceValueType
- 2. Interfaces
- 2.1. PreferenceManagerObject
- 2.2. PreferenceData
- 2.3. PreferenceManager
- 2.4. PreferenceChangeCallback
- 2.5. PreferenceGetAllCallback
- 3. Full WebIDL
Summary of Interfaces and Methods
Interface | Method |
---|---|
PreferenceManagerObject | |
PreferenceData | |
PreferenceManager |
void setValue (DOMString key, PreferenceValueType value)
PreferenceValueType getValue (DOMString key)
void remove (DOMString key)
void removeAll ()
boolean exists (DOMString key)
void setChangeListener (DOMString key, PreferenceChangeCallback listener)
void unsetChangeListener (DOMString key)
|
PreferenceChangeCallback | void onsuccess (PreferenceData data) |
PreferenceGetAllCallback | void onsuccess (PreferenceData[] preferences) |
1. Type Definitions
2. Interfaces
2.1. PreferenceManagerObject
[NoInterfaceObject] interface PreferenceManagerObject { readonly attribute PreferenceManager preference; };
Tizen implements PreferenceManagerObject;
Since: 3.0
The tizen.preference object provides access to the Preference service API's functionality.
Attributes
-
readonly
PreferenceManager preferenceObject representing a preference manager.
Since: 3.0
2.2. PreferenceData
[NoInterfaceObject] interface PreferenceData { readonly attribute DOMString key; readonly attribute PreferenceValueType value; };
Since: 3.0
Attributes
-
readonly
DOMString keyThe key name of the preferences data value.
Since: 3.0
-
readonly
PreferenceValueType valueThe value associated with a given key.
Since: 3.0
2.3. PreferenceManager
[NoInterfaceObject] interface PreferenceManager { void getAll(PreferenceGetAllCallback successCallback, optional ErrorCallback? errorCallback) raises(WebAPIException); void setValue(DOMString key, PreferenceValueType value) raises(WebAPIException); PreferenceValueType getValue(DOMString key) raises(WebAPIException); void remove(DOMString key) raises(WebAPIException); void removeAll() raises(WebAPIException); boolean exists(DOMString key) raises(WebAPIException); void setChangeListener(DOMString key, PreferenceChangeCallback listener) raises(WebAPIException); void unsetChangeListener(DOMString key) raises(WebAPIException); };
Since: 3.0
Methods
-
getAll
-
Gets all preferences data.
void getAll(PreferenceGetAllCallback successCallback, optional ErrorCallback? errorCallback);
Since: 3.0
Parameters:
- successCallback: The callback method to be invoked when all preferences are got.
- errorCallback [optional] [nullable]: The callback method to be invoked when an error occurs.
Exceptions:
- WebAPIException
with error type TypeMismatchError, if any input parameter is not compatible with the expected type for that parameter.
Code example:
var successCB = function(preferences) { if (preferences.length) { console.log( "The first preference - key: " + preferences[0].key + " value: " + preferences[0].value); } }; tizen.preference.getAll(successCB);
Output example:
The first preference - key: key1 value: Sample value
-
setValue
-
Sets the preference value.
void setValue(DOMString key, PreferenceValueType value);
Since: 3.0
Parameters:
- key: The key name of the preference value to set.
- value: The new value for the given key.
Exceptions:
- WebAPIException
with error type IOError, if a write error occurs.
with error type AbortError, if out of memory.
Code example:
tizen.preference.setValue("key1", "New value");
-
getValue
-
Gets a preference value.
PreferenceValueType getValue(DOMString key);
Since: 3.0
Parameters:
- key: The key name of the preference value to retrieve.
Return value:
-
PreferenceValueType:
The value associated with the given key.
Exceptions:
- WebAPIException
with error type IOError, if a read error occurs.
with error type NotFoundError, if required key not available.
with error type AbortError, if out of memory.
Code example:
var currentValue = tizen.preference.getValue("key1"); console.log("The current value of the preference key1 is: " + currentValue);
Output example:
The current value of the preference key1 is: New value
-
remove
-
Removes a value with the given key from the preferences.
void remove(DOMString key);
Since: 3.0
Parameters:
- key: The key name of the preference to remove.
Exceptions:
- WebAPIException
with error type IOError, if a write error occurs.
with error type NotFoundError, if required key not available.
with error type AbortError, if out of memory.
Code example:
tizen.preference.remove("key1");
-
removeAll
-
Removes all key-value pairs from the preferences.
void removeAll();
Since: 3.0
Exceptions:
- WebAPIException
with error type IOError, if a write error occurs.
with error type AbortError, if out of memory.
Code example:
tizen.preference.removeAll();
- WebAPIException
-
exists
-
Checks whether the preference with given key exists.
boolean exists(DOMString key);
Since: 3.0
Parameters:
- key: The key name of the preference to check.
Return value:
-
boolean:
If true the key exists in the application preference, otherwise false.
Exceptions:
- WebAPIException
with error type IOError, if a read error occurs.
with error type AbortError, if out of memory.
Code example:
if (tizen.preference.exists("key1")) { console.log("Preference with the key key1 exists"); } else { console.log("Preference with the key key1 doesn't exist"); }
Output example:
Preference with the key key1 exists
-
setChangeListener
-
Sets the listener to receive notifications about changes of the preference value with the given key.
void setChangeListener(DOMString key, PreferenceChangeCallback listener);
Since: 3.0
Parameters:
- key: The key name of the preference to listen.
- listener: The preference value change listener to set.
Exceptions:
- WebAPIException
with error type TypeMismatchError, if the input parameter is not compatible with the expected type.
with error type IOError, if a read error occurs.
with error type NotFoundError, if required key not available.
with error type AbortError, if out of memory.
Code example:
var listener = function(data) { console.log("Preference with the key: " + data.key + " has a new value: " + data.value); }; tizen.preference.setChangeListener("key1", listener);
Output example:
Preference with the key: key1 has a new value: Sample value
-
unsetChangeListener
-
Unsets the listener, so stop receiving notifications about changes of the preference with the given key.
void unsetChangeListener(DOMString key);
Since: 3.0
Parameters:
- key: The key name of the preference to stop listen.
Exceptions:
- WebAPIException
with error type IOError, if a read error occurs.
with error type NotFoundError, if required key not available.
with error type AbortError, if out of memory.
Code example:
var listener = function(data) { tizen.preference.unsetChangeListener(data.key); }; tizen.preference.setChangeListener("key1", listener);
2.4. PreferenceChangeCallback
[Callback=FunctionOnly, NoInterfaceObject] interface PreferenceChangeCallback { void onsuccess(PreferenceData data); };
Since: 3.0
Methods
-
onsuccess
-
Called when the preference with the given key changed.
void onsuccess(PreferenceData data);
Since: 3.0
Parameters:
- data: The PreferenceData object with the new value of a preference.
Code example:
var listener = function(data) { tizen.preference.unsetChangeListener(data.key); }; tizen.preference.setChangeListener("key1", listener);
2.5. PreferenceGetAllCallback
[Callback=FunctionOnly, NoInterfaceObject] interface PreferenceGetAllCallback { void onsuccess(PreferenceData[] preferences); };
Since: 3.0
Methods
-
onsuccess
-
Called with all preferences' data as an argument.
void onsuccess(PreferenceData[] preferences);
Since: 3.0
Parameters:
- preferences: The array of PreferenceData objects for all preferences.
Code example:
var successCB = function(preferences) { if (preferences.length) { console.log( "First preference - key: " + preferences[0].key + " value: " + preferences[0].value); } }; tizen.preference.getAll(successCB);
Output example:
First preference - key: key1 value: Sample value
3. Full WebIDL
module Preference { typedef (DOMString or long or double or boolean) PreferenceValueType; Tizen implements PreferenceManagerObject; [NoInterfaceObject] interface PreferenceManagerObject { readonly attribute PreferenceManager preference; }; [NoInterfaceObject] interface PreferenceData { readonly attribute DOMString key; readonly attribute PreferenceValueType value; }; [NoInterfaceObject] interface PreferenceManager { void getAll(PreferenceGetAllCallback successCallback, optional ErrorCallback? errorCallback) raises(WebAPIException); void setValue(DOMString key, PreferenceValueType value) raises(WebAPIException); PreferenceValueType getValue(DOMString key) raises(WebAPIException); void remove(DOMString key) raises(WebAPIException); void removeAll() raises(WebAPIException); boolean exists(DOMString key) raises(WebAPIException); void setChangeListener(DOMString key, PreferenceChangeCallback listener) raises(WebAPIException); void unsetChangeListener(DOMString key) raises(WebAPIException); }; [Callback=FunctionOnly, NoInterfaceObject] interface PreferenceChangeCallback { void onsuccess(PreferenceData data); }; [Callback=FunctionOnly, NoInterfaceObject] interface PreferenceGetAllCallback { void onsuccess(PreferenceData[] preferences); }; };