Merge "[2.2.1][P130807-00904] Fail to get the host of the uri which has only ? charac...
[platform/framework/native/appfw.git] / inc / FAppAppRegistry.h
index 9b592dc..0defc91 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -149,7 +148,7 @@ public:
         * @exception   E_SUCCESS                               The method is successful.
         * @exception   E_INVALID_ARG                   The specified @c key is empty or is string with '\0' and @htmlonly '\n' @endhtmlonly.
         * @exception   E_KEY_ALREADY_EXIST             The key has already been used in the application preferences.
-        * @remarks     In order to save the value in the persistent storage, the AppRegistry::Save() method must be called.
+        * @remarks     In order to save the value in the persistent storage, the Save() method must be called.
         */
        result Add(const Tizen::Base::String& key, const Tizen::Base::String& value);
 
@@ -164,7 +163,7 @@ public:
         * @exception   E_SUCCESS                               The method is successful.
         * @exception   E_INVALID_ARG                   The specified @c key is empty or is string with '\0' and @htmlonly '\n' @endhtmlonly.
         * @exception   E_KEY_ALREADY_EXIST             The key has already been used in the application preferences.
-        * @remarks     In order to save the value in the persistent storage, the AppRegistry::Save() method must be called.
+        * @remarks     In order to save the value in the persistent storage, the Save() method must be called.
         */
        result Add(const Tizen::Base::String& key, int value);
 
@@ -179,7 +178,7 @@ public:
         * @exception   E_SUCCESS                               The method is successful.
         * @exception   E_INVALID_ARG                   The specified @c key is empty or is string with '\0' and @htmlonly '\n' @endhtmlonly.
         * @exception   E_KEY_ALREADY_EXIST             The key has already been used in the application preferences.
-        * @remarks     In order to save the value in the persistent storage, the AppRegistry::Save() method must be called.
+        * @remarks     In order to save the value in the persistent storage, the Save() method must be called.
         */
        result Add(const Tizen::Base::String& key, double value);
 
@@ -194,7 +193,7 @@ public:
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_ARG                   The specified @c key is empty or is string with '\0' and @htmlonly '\n' @endhtmlonly.
         * @exception   E_KEY_NOT_FOUND         The specified @c key is not used in the application preferences.
-        * @remarks     In order to save the value in the persistent storage, the AppRegistry::Save() method must be called.
+        * @remarks     In order to save the value in the persistent storage, the Save() method must be called.
         */
        result Set(const Tizen::Base::String& key, const Tizen::Base::String& value);
 
@@ -209,7 +208,7 @@ public:
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_ARG                   The specified @c key is empty or is string with '\0' and @htmlonly '\n' @endhtmlonly.
         * @exception   E_KEY_NOT_FOUND         The specified @c key is not used in the application preferences.
-        * @remarks     In order to save the value in the persistent storage, the AppRegistry::Save() method must be called.
+        * @remarks     In order to save the value in the persistent storage, the Save() method must be called.
         */
        result Set(const Tizen::Base::String& key, int value);
 
@@ -222,9 +221,9 @@ public:
         * @param[in]   key     A key corresponding to the value
         * @param[in]   value   A floating point value
         * @exception   E_SUCCESS                       The method is successful.
-        * @exception   E_INVALID_ARG                   The specified @c key is empty or is string with '\0' and @htmlonly '\n' @endhtmlonly.
+        * @exception   E_INVALID_ARG                   The specified @c key is empty or is string with '\0' and @htmlonly '\n' @endhtmlonly. 
         * @exception   E_KEY_NOT_FOUND         The specified @c key is not used in the application preferences.
-        * @remarks     In order to save the value in the persistent storage, the AppRegistry::Save() method must be called.
+        * @remarks     In order to save the value in the persistent storage, the Save() method must be called.
         */
        result Set(const Tizen::Base::String& key, double value);