Remove const keyword of value parameter
[platform/framework/native/appfw.git] / inc / FAppISqlDataControlProviderEventListener.h
index 68f3cbe..4a3305e 100644 (file)
@@ -34,11 +34,11 @@ namespace Tizen { namespace App
 
 /**
  * @interface  ISqlDataControlProviderEventListener
- * @brief              This interface defines a listener for dealing with SQL-type data control request.
+ * @brief              This interface defines a listener for dealing with SQL-friendly interface based data control request.
  *
  * @since      2.0
  *
- * The %ISqlDataControlProviderEventListener interface defines a listener for dealing with SQL-type data control request.
+ * The %ISqlDataControlProviderEventListener interface defines a listener for dealing with SQL-friendly interface based data control request.
  *
  * The following example demonstrates how to use the %ISqlDataControlProviderEventListener interface.
  *
@@ -250,7 +250,7 @@ public:
        virtual ~ISqlDataControlProviderEventListener(void) {}
 
        /**
-       * Called when a select request is received from an application using SQL-type data control. @n
+       * Called when a select request is received from an application using SQL-friendly interface based data control. @n
        * The provider must implement this listener for providing its own data.
        *
        * @since        2.0
@@ -276,7 +276,7 @@ public:
                        const Tizen::Base::String* pWhere, const Tizen::Base::String* pOrder) = 0;
 
        /**
-       * Called when an insert request is received from an application using SQL-type data control. @n
+       * Called when an insert request is received from an application using SQL-friendly interface based data control. @n
        * The provider must implement this listener for providing its own data.
        *
        * @since        2.0
@@ -285,7 +285,7 @@ public:
        * @param[in]    providerId              The provider ID for identifying the data control
        * @param[in]    dataId                  A string for identifying a specific table to insert into @n
        *                                                               The string consists of one or more components, separated by a slash('/').
-       * @param[in]    insertMap               The column-value pairs to insert @n
+       * @param[in]    insertMap               The field values in a record to insert @n
        *                                                               The type of objects contained in the specified @c insertMap is
        *                                                               Tizen::Base::String class.
        * @remarks              For replying to the data control request, use DataControlProviderManager::SendSqlDataControlInsertResult()
@@ -295,7 +295,7 @@ public:
                        const Tizen::Base::String& dataId, const Tizen::Base::Collection::IMap& insertMap) = 0;
 
        /**
-       * Called when an update request is received from an application using SQL-type data control. @n
+       * Called when an update request is received from an application using SQL-friendly interface based data control. @n
        * The provider must implement this listener for providing its own data.
        *
        * @since        2.0
@@ -304,7 +304,7 @@ public:
        * @param[in]    providerId              The provider ID for identifying the data control
        * @param[in]    dataId                  A string for identifying a specific table to update @n
        *                                                               The string consists of one or more components, separated by a slash('/').
-       * @param[in]    updateMap               The column-value pairs to update @n
+       * @param[in]    updateMap               The field values in a record to update @n
        *                                                               The type of objects contained in the specified @c updateMap is
        *                                                               Tizen::Base::String class.
        * @param[in]    pWhere                  A filter to select desired rows to update @n
@@ -318,7 +318,7 @@ public:
                        const Tizen::Base::String* pWhere) = 0;
 
        /**
-       * Called when a delete request is received from an application using SQL-type data control. @n
+       * Called when a delete request is received from an application using SQL-friendly interface based data control. @n
        * The provider must implement this listener for providing its own data.
        *
        * @since        2.0