Update API descriptions 69/193069/4
authorJihoon Kim <jihoon48.kim@samsung.com>
Wed, 14 Nov 2018 08:19:40 +0000 (17:19 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 15 Nov 2018 01:30:33 +0000 (10:30 +0900)
Change-Id: I242fc8bf463ddf4cb28029d7eead352ee551f457
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
doc/autofill_doc.h
doc/autofill_service_doc.h
include/autofill_common.h

index fd65b1c..86dfe27 100644 (file)
@@ -27,7 +27,7 @@
  *
  * @section CAPI_UIX_AUTOFILL_MODULE_OVERVIEW Overview
  * Autofill is a feature that allows you to fill out commonly-entered information such as email, account and address in a text input field. email, account and address in a text input field.
- * @ref CAPI_UIX_AUTOFILL_MODULE APIs are responsible for sending data for supporting autofill to the autofill service and receiving the commonly-entered data from the autofill service.
+ * @ref CAPI_UIX_AUTOFILL_MODULE functions are responsible for sending data for supporting autofill to the autofill service and receiving the commonly-entered data from the autofill service.
  */
 
 
index 0ce5a11..bca2e62 100644 (file)
@@ -27,7 +27,7 @@
  *
  * @section CAPI_UIX_AUTOFILL_SERVICE_MODULE_OVERVIEW Overview
  * Autofill Service application is a service application to save the user input and provide the commonly-entered information.
- * Using the @ref CAPI_UIX_AUTOFILL_SERVICE_MODULE APIs, Autofill Service developers can implement their own autofill service to serve the autofill information.
+ * Using the @ref CAPI_UIX_AUTOFILL_SERVICE_MODULE functions, Autofill Service developers can implement their own autofill service to serve the autofill information.
  */
 
 
index 9f95418..16edf68 100644 (file)
@@ -175,7 +175,7 @@ typedef bool (*autofill_fill_response_group_cb)(autofill_fill_response_group_h i
 typedef bool (*autofill_fill_response_item_cb)(autofill_fill_response_item_h item, void *user_data);
 
 /**
- * @brief Creates autofill item.
+ * @brief Creates an autofill item.
  * @since_tizen 5.5
  * @remarks If the function succeeds, @a it handle must be released with autofill_item_destroy().
  * @param[out] it The autofill item handle
@@ -188,7 +188,7 @@ typedef bool (*autofill_fill_response_item_cb)(autofill_fill_response_item_h ite
 int autofill_item_create(autofill_item_h *it);
 
 /**
- * @brief Destroys autofill item.
+ * @brief Destroys an autofill item.
  * @since_tizen 5.5
  * @param[in] it The autofill item handle
  * @return 0 on success, otherwise a negative error value
@@ -198,7 +198,7 @@ int autofill_item_create(autofill_item_h *it);
 int autofill_item_destroy(autofill_item_h it);
 
 /**
- * @brief Clones autofill item.
+ * @brief Clones an autofill item.
  * @since_tizen 5.5
  * @remarks If the function succeeds, @a clone handle must be released with autofill_item_destroy().
  * @param[in] it The autofill item handle
@@ -210,7 +210,7 @@ int autofill_item_destroy(autofill_item_h it);
 int autofill_item_clone(autofill_item_h it, autofill_item_h *clone);
 
 /**
- * @brief Sets autofill hint (id (username), name, password, phone, credit card number, organization, so on) in autofill item.
+ * @brief Sets the autofill hint (id (username), name, password, phone, credit card number, organization, so on) in an autofill item.
  * @since_tizen 5.5
  * @param[in] it The autofill item handle
  * @param[in] hint The autofill hint
@@ -221,7 +221,7 @@ int autofill_item_clone(autofill_item_h it, autofill_item_h *clone);
 int autofill_item_set_autofill_hint(autofill_item_h it, autofill_hint_e hint);
 
 /**
- * @brief Gets autofill hint in autofill item.
+ * @brief Gets the autofill hint in an autofill item.
  * @since_tizen 5.5
  * @param[in] it The autofill item handle
  * @param[out] hint The autofill hint
@@ -232,7 +232,7 @@ int autofill_item_set_autofill_hint(autofill_item_h it, autofill_hint_e hint);
 int autofill_item_get_autofill_hint(autofill_item_h it, autofill_hint_e *hint);
 
 /**
- * @brief Sets autofill ID in autofill item.
+ * @brief Sets the autofill ID in an autofill item.
  * @since_tizen 5.5
  * @param[in] it The autofill item handle
  * @param[in] id The autofill ID
@@ -243,7 +243,7 @@ int autofill_item_get_autofill_hint(autofill_item_h it, autofill_hint_e *hint);
 int autofill_item_set_id(autofill_item_h it, const char *id);
 
 /**
- * @brief Gets autofill ID in autofill item.
+ * @brief Gets the autofill ID in an autofill item.
  * @since_tizen 5.5
  * @remarks @a id must be released using free().
  * @param[in] it The autofill item handle
@@ -255,7 +255,7 @@ int autofill_item_set_id(autofill_item_h it, const char *id);
 int autofill_item_get_id(autofill_item_h it, char **id);
 
 /**
- * @brief Sets autofill Label in autofill item.
+ * @brief Sets the autofill label in an autofill item.
  * @since_tizen 5.5
  * @param[in] it The autofill item handle
  * @param[in] label The autofill label
@@ -266,7 +266,7 @@ int autofill_item_get_id(autofill_item_h it, char **id);
 int autofill_item_set_label(autofill_item_h it, const char *label);
 
 /**
- * @brief Gets autofill Label in autofill item.
+ * @brief Gets the autofill label in an autofill item.
  * @since_tizen 5.5
  * @remarks @a label must be released using free().
  * @param[in] it The autofill item handle
@@ -278,7 +278,7 @@ int autofill_item_set_label(autofill_item_h it, const char *label);
 int autofill_item_get_label(autofill_item_h it, char **label);
 
 /**
- * @brief Sets sensitive data in autofill item.
+ * @brief Sets the sensitive data in an autofill item.
  * @since_tizen 5.5
  * @param[in] it The autofill item handle
  * @param[in] sensitive The sensitive data or not
@@ -289,7 +289,7 @@ int autofill_item_get_label(autofill_item_h it, char **label);
 int autofill_item_set_sensitive_data(autofill_item_h it, bool sensitive);
 
 /**
- * @brief Gets sensitive data in autofill item.
+ * @brief Gets the sensitive data in an autofill item.
  * @since_tizen 5.5
  * @param[in] it The autofill item handle
  * @param[out] sensitive The sensitive data or not
@@ -300,7 +300,7 @@ int autofill_item_set_sensitive_data(autofill_item_h it, bool sensitive);
 int autofill_item_get_sensitive_data(autofill_item_h it, bool *sensitive);
 
 /**
- * @brief Sets autofill value in autofill item.
+ * @brief Sets the autofill value in an autofill item.
  * @since_tizen 5.5
  * @param[in] it The autofill item handle
  * @param[in] value The autofill value
@@ -311,7 +311,7 @@ int autofill_item_get_sensitive_data(autofill_item_h it, bool *sensitive);
 int autofill_item_set_value(autofill_item_h it, const char *value);
 
 /**
- * @brief Gets autofill value in autofill item.
+ * @brief Gets the autofill value in an autofill item.
  * @since_tizen 5.5
  * @remarks @a value must be released using free().
  * @param[in] it The autofill item handle
@@ -323,7 +323,7 @@ int autofill_item_set_value(autofill_item_h it, const char *value);
 int autofill_item_get_value(autofill_item_h it, char **value);
 
 /**
- * @brief Creates autofill authentication info.
+ * @brief Creates autofill authentication information.
  * @since_tizen 5.5
  * @remarks If the function succeeds, @a ai handle must be released with autofill_auth_info_destroy().
  * @param[out] ai The autofill authentication information handle
@@ -335,7 +335,7 @@ int autofill_item_get_value(autofill_item_h it, char **value);
 int autofill_auth_info_create(autofill_auth_info_h *ai);
 
 /**
- * @brief Destroys autofill authentication info.
+ * @brief Destroys autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @return 0 on success, otherwise a negative error value
@@ -345,7 +345,7 @@ int autofill_auth_info_create(autofill_auth_info_h *ai);
 int autofill_auth_info_destroy(autofill_auth_info_h ai);
 
 /**
- * @brief Sets app id in autofill authentication information.
+ * @brief Sets the app id in autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @param[in] app_id The app ID
@@ -356,7 +356,7 @@ int autofill_auth_info_destroy(autofill_auth_info_h ai);
 int autofill_auth_info_set_app_id(autofill_auth_info_h ai, const char *app_id);
 
 /**
- * @brief Gets app id in autofill authentication information.
+ * @brief Gets the app id in autofill authentication information.
  * @since_tizen 5.5
  * @remarks @a app_id must be released using free().
  * @param[in] ai The autofill authentication information handle
@@ -368,7 +368,7 @@ int autofill_auth_info_set_app_id(autofill_auth_info_h ai, const char *app_id);
 int autofill_auth_info_get_app_id(autofill_auth_info_h ai, char **app_id);
 
 /**
- * @brief Sets view id in autofill authentication information.
+ * @brief Sets the view id in autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @param[in] view_id The view ID
@@ -379,7 +379,7 @@ int autofill_auth_info_get_app_id(autofill_auth_info_h ai, char **app_id);
 int autofill_auth_info_set_view_id(autofill_auth_info_h ai, const char *view_id);
 
 /**
- * @brief Gets view id in autofill authentication information.
+ * @brief Gets the view id in autofill authentication information.
  * @since_tizen 5.5
  * @remarks @a view_id must be released using free().
  * @param[in] ai The autofill authentication information handle
@@ -391,7 +391,7 @@ int autofill_auth_info_set_view_id(autofill_auth_info_h ai, const char *view_id)
 int autofill_auth_info_get_view_id(autofill_auth_info_h ai, char **view_id);
 
 /**
- * @brief Sets exist autofill data in autofill authentication information.
+ * @brief Sets the exist autofill data in autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @param[in] exist_autofill_data The autofill data existence
@@ -402,7 +402,7 @@ int autofill_auth_info_get_view_id(autofill_auth_info_h ai, char **view_id);
 int autofill_auth_info_set_exist_autofill_data(autofill_auth_info_h ai, bool exist_autofill_data);
 
 /**
- * @brief Gets exist autofill data in autofill authentication information.
+ * @brief Gets the exist autofill data in autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @param[out] exist_autofill_data The autofill data existence
@@ -413,7 +413,7 @@ int autofill_auth_info_set_exist_autofill_data(autofill_auth_info_h ai, bool exi
 int autofill_auth_info_get_exist_autofill_data(autofill_auth_info_h ai, bool *exist_autofill_data);
 
 /**
- * @brief Sets need authentication in autofill authentication information.
+ * @brief Sets the need authentication in autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @param[in] need_authentication The authentication need
@@ -424,7 +424,7 @@ int autofill_auth_info_get_exist_autofill_data(autofill_auth_info_h ai, bool *ex
 int autofill_auth_info_set_need_authentication(autofill_auth_info_h ai, bool need_authentication);
 
 /**
- * @brief Gets need authentication in autofill authentication information.
+ * @brief Gets the need authentication in autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @param[out] need_authentication The authentication need
@@ -435,7 +435,7 @@ int autofill_auth_info_set_need_authentication(autofill_auth_info_h ai, bool nee
 int autofill_auth_info_get_need_authentication(autofill_auth_info_h ai, bool *need_authentication);
 
 /**
- * @brief Sets service name in autofill authentication information.
+ * @brief Sets the service name in autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @param[in] service_name The autofill service name
@@ -446,7 +446,7 @@ int autofill_auth_info_get_need_authentication(autofill_auth_info_h ai, bool *ne
 int autofill_auth_info_set_service_name(autofill_auth_info_h ai, const char *service_name);
 
 /**
- * @brief Gets service name in autofill authentication information.
+ * @brief Gets the service name in autofill authentication information.
  * @since_tizen 5.5
  * @remarks @a service_name must be released using free().
  * @param[in] ai The autofill authentication information handle
@@ -458,7 +458,7 @@ int autofill_auth_info_set_service_name(autofill_auth_info_h ai, const char *ser
 int autofill_auth_info_get_service_name(autofill_auth_info_h ai, char **service_name);
 
 /**
- * @brief Sets service message in autofill authentication information.
+ * @brief Sets the service message in autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @param[in] service_message The autofill service message
@@ -469,7 +469,7 @@ int autofill_auth_info_get_service_name(autofill_auth_info_h ai, char **service_
 int autofill_auth_info_set_service_message(autofill_auth_info_h ai, const char *service_message);
 
 /**
- * @brief Gets service message in autofill authentication information.
+ * @brief Gets the service message in autofill authentication information.
  * @since_tizen 5.5
  * @remarks @a service_message must be released using free().
  * @param[in] ai The autofill authentication information handle
@@ -481,7 +481,7 @@ int autofill_auth_info_set_service_message(autofill_auth_info_h ai, const char *
 int autofill_auth_info_get_service_message(autofill_auth_info_h ai, char **service_message);
 
 /**
- * @brief Sets service logo image path in autofill authentication information.
+ * @brief Sets the service logo image path in autofill authentication information.
  * @since_tizen 5.5
  * @param[in] ai The autofill authentication information handle
  * @param[in] service_logo_image_path The autofill service logo image path
@@ -492,7 +492,7 @@ int autofill_auth_info_get_service_message(autofill_auth_info_h ai, char **servi
 int autofill_auth_info_set_service_logo_image_path(autofill_auth_info_h ai, const char *service_logo_image_path);
 
 /**
- * @brief Gets service logo image path in autofill authentication information.
+ * @brief Gets the service logo image path in autofill authentication information.
  * @since_tizen 5.5
  * @remarks @a service_logo_image_path must be released using free().
  * @param[in] ai The autofill authentication information handle
@@ -504,7 +504,7 @@ int autofill_auth_info_set_service_logo_image_path(autofill_auth_info_h ai, cons
 int autofill_auth_info_get_service_logo_image_path(autofill_auth_info_h ai, char **service_logo_image_path);
 
 /**
- * @brief Creates autofill view info.
+ * @brief Creates an autofill view information.
  * @since_tizen 5.5
  * @remarks If the function succeeds, @a vi handle must be released with autofill_view_info_destroy().
  * @param[out] vi The autofill view info handle
@@ -516,7 +516,7 @@ int autofill_auth_info_get_service_logo_image_path(autofill_auth_info_h ai, char
 int autofill_view_info_create(autofill_view_info_h *vi);
 
 /**
- * @brief Destroys autofill view info.
+ * @brief Destroys an autofill view information.
  * @since_tizen 5.5
  * @param[in] vi The autofill view info handle
  * @return 0 on success, otherwise a negative error value
@@ -526,7 +526,7 @@ int autofill_view_info_create(autofill_view_info_h *vi);
 int autofill_view_info_destroy(autofill_view_info_h vi);
 
 /**
- * @brief Sets app id in autofill view information.
+ * @brief Sets the app id in an autofill view information.
  * @since_tizen 5.5
  * @param[in] vi The autofill view info handle
  * @param[in] app_id The app ID
@@ -537,7 +537,7 @@ int autofill_view_info_destroy(autofill_view_info_h vi);
 int autofill_view_info_set_app_id(autofill_view_info_h vi, const char *app_id);
 
 /**
- * @brief Gets app id in autofill view information.
+ * @brief Gets the app id in an autofill view information.
  * @since_tizen 5.5
  * @remarks @a app_id must be released using free().
  * @param[in] vi The autofill view info handle
@@ -549,7 +549,7 @@ int autofill_view_info_set_app_id(autofill_view_info_h vi, const char *app_id);
 int autofill_view_info_get_app_id(const autofill_view_info_h vi, char **app_id);
 
 /**
- * @brief Sets view id in autofill view information.
+ * @brief Sets the view id in an autofill view information.
  * @since_tizen 5.5
  * @param[in] vi The autofill view info handle
  * @param[in] view_id The view ID
@@ -560,7 +560,7 @@ int autofill_view_info_get_app_id(const autofill_view_info_h vi, char **app_id);
 int autofill_view_info_set_view_id(autofill_view_info_h vi, const char *view_id);
 
 /**
- * @brief Gets view id in autofill view information.
+ * @brief Gets the view id in an autofill view information.
  * @since_tizen 5.5
  * @remarks @a view_id must be released using free().
  * @param[in] vi The autofill view info handle
@@ -572,7 +572,7 @@ int autofill_view_info_set_view_id(autofill_view_info_h vi, const char *view_id)
 int autofill_view_info_get_view_id(autofill_view_info_h vi, char **view_id);
 
 /**
- * @brief Adds autofill item in autofill view information.
+ * @brief Adds autofill item in an autofill view information.
  * @since_tizen 5.5
  * @param[in] vi The autofill view info handle
  * @param[in] it The autofill item handle
@@ -583,7 +583,7 @@ int autofill_view_info_get_view_id(autofill_view_info_h vi, char **view_id);
 int autofill_view_info_add_item(const autofill_view_info_h vi, autofill_item_h it);
 
 /**
- * @brief Retrieves all items in view info.
+ * @brief Retrieves all items in view information.
  * @since_tizen 5.5
  * @param[in] vi The autofill view info handle
  * @param[in] callback The callback function to register
@@ -592,10 +592,10 @@ int autofill_view_info_add_item(const autofill_view_info_h vi, autofill_item_h i
  * @retval #AUTOFILL_ERROR_NONE No error
  * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  */
-int autofill_view_info_foreach_items(autofill_view_info_h vi, autofill_item_cb callback, void *user_data);
+int autofill_view_info_foreach_item(autofill_view_info_h vi, autofill_item_cb callback, void *user_data);
 
 /**
- * @brief Creates autofill save view.
+ * @brief Creates an autofill save view.
  * @since_tizen 5.5
  * @remarks If the function succeeds, @a vi handle must be released with autofill_save_view_info_destroy()
  * @param[out] vi The autofill view info handle
@@ -607,7 +607,7 @@ int autofill_view_info_foreach_items(autofill_view_info_h vi, autofill_item_cb c
 int autofill_save_view_info_create(autofill_save_view_info_h *vi);
 
 /**
- * @brief Destroys autofill save view.
+ * @brief Destroys an autofill save view.
  * @since_tizen 5.5
  * @param[in] vi The autofill view info handle
  * @return 0 on success, otherwise a negative error value
@@ -617,7 +617,7 @@ int autofill_save_view_info_create(autofill_save_view_info_h *vi);
 int autofill_save_view_info_destroy(autofill_save_view_info_h vi);
 
 /**
- * @brief Sets app ID in autofill save view information.
+ * @brief Sets the app ID in autofill save view information.
  * @since_tizen 5.5
  * @param[in] vi The autofill view info handle
  * @param[in] app_id The app ID
@@ -628,7 +628,7 @@ int autofill_save_view_info_destroy(autofill_save_view_info_h vi);
 int autofill_save_view_info_set_app_id(autofill_save_view_info_h vi, const char *app_id);
 
 /**
- * @brief Gets app ID  in autofill save view information.
+ * @brief Gets the app ID in autofill save view information.
  * @since_tizen 5.5
  * @remarks @a app_id must be released using free().
  * @param[in] vi The autofill view info handle
@@ -640,7 +640,7 @@ int autofill_save_view_info_set_app_id(autofill_save_view_info_h vi, const char
 int autofill_save_view_info_get_app_id(const autofill_save_view_info_h vi, char **app_id);
 
 /**
- * @brief Sets view ID  in autofill save view information.
+ * @brief Sets the view ID  in autofill save view information.
  * @since_tizen 5.5
  * @param[in] vi The autofill view info handle
  * @param[in] view_id The view ID
@@ -651,7 +651,7 @@ int autofill_save_view_info_get_app_id(const autofill_save_view_info_h vi, char
 int autofill_save_view_info_set_view_id(autofill_save_view_info_h vi, const char *view_id);
 
 /**
- * @brief Gets view ID in autofill save view information.
+ * @brief Gets the view ID in autofill save view information.
  * @since_tizen 5.5
  * @remarks @a view_id must be released using free().
  * @param[in] vi The autofill view info handle
@@ -663,7 +663,7 @@ int autofill_save_view_info_set_view_id(autofill_save_view_info_h vi, const char
 int autofill_save_view_info_get_view_id(autofill_save_view_info_h vi, char **view_id);
 
 /**
- * @brief Adds autofill save item  in autofill save view information.
+ * @brief Adds autofill save item in autofill save view information.
  * @since_tizen 5.5
  * @param[in] vi The autofill save view info handle
  * @param[in] it The autofill save item handle
@@ -674,7 +674,7 @@ int autofill_save_view_info_get_view_id(autofill_save_view_info_h vi, char **vie
 int autofill_save_view_info_add_item(const autofill_save_view_info_h vi, autofill_save_item_h it);
 
 /**
- * @brief Retrieves all items in save view info.
+ * @brief Retrieves all items in save view information.
  * @since_tizen 5.5
  * @param[in] vi The autofill view info handle
  * @param[in] callback The callback function to register
@@ -686,7 +686,7 @@ int autofill_save_view_info_add_item(const autofill_save_view_info_h vi, autofil
 int autofill_save_view_info_foreach_items(autofill_save_view_info_h vi, autofill_save_item_cb callback, void *user_data);
 
 /**
- * @brief Creates autofill fill response.
+ * @brief Creates an autofill fill response.
  * @since_tizen 5.5
  * @remarks If the function succeeds, @a h handle must be released with autofill_fill_response_destroy().
  * @param[out] h The autofill fill response handle
@@ -697,7 +697,7 @@ int autofill_save_view_info_foreach_items(autofill_save_view_info_h vi, autofill
 int autofill_fill_response_create(autofill_fill_response_h *h);
 
 /**
- * @brief Destroys autofill fill response.
+ * @brief Destroys an autofill fill response.
  * @since_tizen 5.5
  * @param[in] h The autofill fill response handle
  * @return 0 on success, otherwise a negative error value
@@ -707,7 +707,7 @@ int autofill_fill_response_create(autofill_fill_response_h *h);
 int autofill_fill_response_destroy(autofill_fill_response_h h);
 
 /**
- * @brief Sets app ID.
+ * @brief Sets the app ID in an autofill fill response.
  * @since_tizen 5.5
  * @param[in] h The autofill fill response handle
  * @param[in] app_id The app ID
@@ -718,7 +718,7 @@ int autofill_fill_response_destroy(autofill_fill_response_h h);
 int autofill_fill_response_set_app_id(autofill_fill_response_h h, const char *app_id);
 
 /**
- * @brief Gets app ID.
+ * @brief Gets the app ID in an autofill fill response.
  * @since_tizen 5.5
  * @remarks @a app_id must be released using free().
  * @param[in] h The autofill fill response handle
@@ -730,7 +730,7 @@ int autofill_fill_response_set_app_id(autofill_fill_response_h h, const char *ap
 int autofill_fill_response_get_app_id(autofill_fill_response_h h, char **app_id);
 
 /**
- * @brief Sets view ID.
+ * @brief Sets the view ID in an autofill fill response.
  * @since_tizen 5.5
  * @param[in] h The autofill fill response handle
  * @param[in] view_id The view ID
@@ -741,7 +741,7 @@ int autofill_fill_response_get_app_id(autofill_fill_response_h h, char **app_id)
 int autofill_fill_response_set_view_id(autofill_fill_response_h h, const char *view_id);
 
 /**
- * @brief Gets view ID.
+ * @brief Gets the view ID in an autofill fill response.
  * @since_tizen 5.5
  * @remarks @a view_id must be released using free().
  * @param[in] h The autofill fill response handle
@@ -763,7 +763,6 @@ int autofill_fill_response_get_view_id(autofill_fill_response_h h, char **view_i
  */
 int autofill_fill_response_add_group(autofill_fill_response_h h, autofill_fill_response_group_h it);
 
-
 /**
  * @brief Retrieves all groups of each fill response.
  * @since_tizen 5.5
@@ -788,7 +787,7 @@ int autofill_fill_response_foreach_groups(autofill_fill_response_h h, autofill_f
 int autofill_fill_response_get_group_count(autofill_fill_response_h h, int *count);
 
 /**
- * @brief Creates autofill fill response group.
+ * @brief Creates an autofill fill response group.
  * @since_tizen 5.5
  * @remarks If the function succeeds, @a h handle must be released with autofill_fill_response_group_destroy().
  * @param[out] h The autofill fill response group handle
@@ -800,7 +799,7 @@ int autofill_fill_response_get_group_count(autofill_fill_response_h h, int *coun
 int autofill_fill_response_group_create(autofill_fill_response_group_h *h);
 
 /**
- * @brief Destroys autofill fill response group.
+ * @brief Destroys an autofill fill response group.
  * @since_tizen 5.5
  * @param[in] h The autofill fill response group handle
  * @return 0 on success, otherwise a negative error value
@@ -810,7 +809,7 @@ int autofill_fill_response_group_create(autofill_fill_response_group_h *h);
 int autofill_fill_response_group_destroy(autofill_fill_response_group_h h);
 
 /**
- * @brief Clones autofill fill response group.
+ * @brief Clones an autofill fill response group.
  * @since_tizen 5.5
  * @remarks If the function succeeds, @a clone handle must be released with autofill_fill_response_group_destroy().
  * @param[in] h The autofill fill response group handle
@@ -822,7 +821,7 @@ int autofill_fill_response_group_destroy(autofill_fill_response_group_h h);
 int autofill_fill_response_group_clone(autofill_fill_response_group_h h, autofill_fill_response_group_h *clone);
 
 /**
- * @brief Adds autofill item in autofill fil response group.
+ * @brief Adds autofill item in an autofill fil response group.
  * @since_tizen 5.5
  * @param[in] h The autofill fill response group handle
  * @param[in] it The autofill fill response item handle
@@ -858,7 +857,7 @@ int autofill_fill_response_group_foreach_items(autofill_fill_response_group_h h,
 int autofill_fill_response_item_create(autofill_fill_response_item_h *it);
 
 /**
- * @brief Destroys autofill fill response item.
+ * @brief Destroys an autofill fill response item.
  * @since_tizen 5.5
  * @param[in] it The autofill fill response item handle
  * @return 0 on success, otherwise a negative error value
@@ -868,7 +867,7 @@ int autofill_fill_response_item_create(autofill_fill_response_item_h *it);
 int autofill_fill_response_item_destroy(autofill_fill_response_item_h it);
 
 /**
- * @brief Clones autofill fill response item.
+ * @brief Clones an autofill fill response item.
  *
  * @since_tizen 5.5
  *
@@ -881,7 +880,7 @@ int autofill_fill_response_item_destroy(autofill_fill_response_item_h it);
 int autofill_fill_response_item_clone(autofill_fill_response_item_h it, autofill_fill_response_item_h *clone);
 
 /**
- * @brief Sets autofill ID in autofill fill response item.
+ * @brief Sets the autofill ID in an autofill fill response item.
  * @since_tizen 5.5
  * @param[in] it The autofill fill response item handle
  * @param[in] id The autofill fill response item ID
@@ -892,7 +891,7 @@ int autofill_fill_response_item_clone(autofill_fill_response_item_h it, autofill
 int autofill_fill_response_item_set_id(autofill_fill_response_item_h it, const char *id);
 
 /**
- * @brief Gets autofill ID in autofill fill response item.
+ * @brief Gets the autofill ID in an autofill fill response item.
  * @since_tizen 5.5
  * @remarks @a id must be released using free().
  * @param[in] it The autofill fill response item handle
@@ -904,7 +903,7 @@ int autofill_fill_response_item_set_id(autofill_fill_response_item_h it, const c
 int autofill_fill_response_item_get_id(autofill_fill_response_item_h it, char **id);
 
 /**
- * @brief Sets autofill value in autofill fill response item.
+ * @brief Sets the autofill value in an autofill fill response item.
  * @since_tizen 5.5
  * @param[in] it The autofill fill response item handle
  * @param[in] value The autofill fill response item value
@@ -915,7 +914,7 @@ int autofill_fill_response_item_get_id(autofill_fill_response_item_h it, char **
 int autofill_fill_response_item_set_value(autofill_fill_response_item_h it, const char *value);
 
 /**
- * @brief Gets autofill value in autofill fill response item.
+ * @brief Gets the autofill value in an autofill fill response item.
  * @since_tizen 5.5
  * @remarks @a value must be released using free().
  * @param[in] it The autofill fill response item handle
@@ -927,7 +926,7 @@ int autofill_fill_response_item_set_value(autofill_fill_response_item_h it, cons
 int autofill_fill_response_item_get_value(autofill_fill_response_item_h it, char **value);
 
 /**
- * @brief Sets presentation text in autofill fill response item.
+ * @brief Sets the presentation text in an autofill fill response item.
  * @since_tizen 5.5
  * @param[in] it The autofill fill response item handle
  * @param[in] presentation_text The presentation text
@@ -938,7 +937,7 @@ int autofill_fill_response_item_get_value(autofill_fill_response_item_h it, char
 int autofill_fill_response_item_set_presentation_text(autofill_fill_response_item_h it, const char *presentation_text);
 
 /**
- * @brief Gets presentation text in autofill fill response item.
+ * @brief Gets the presentation text in an autofill fill response item.
  * @since_tizen 5.5
  * @remarks @a presentation_text must be released using free().
  * @param[in] it The autofill fill response item handle
@@ -961,7 +960,7 @@ int autofill_fill_response_item_get_presentation_text(autofill_fill_response_ite
 int autofill_save_item_create(autofill_save_item_h *it);
 
 /**
- * @brief Destroys autofill save item.
+ * @brief Destroys an autofill save item.
  * @since_tizen 5.5
  * @param[in] it The autofill save item handle
  * @return 0 on success, otherwise a negative error value
@@ -971,7 +970,7 @@ int autofill_save_item_create(autofill_save_item_h *it);
 int autofill_save_item_destroy(autofill_save_item_h it);
 
 /**
- * @brief Clones autofill save item.
+ * @brief Clones an autofill save item.
  * @since_tizen 5.5
  * @param[in] it The autofill save item handle
  * @param[in] clone The autofill save item handle to be cloned
@@ -982,7 +981,7 @@ int autofill_save_item_destroy(autofill_save_item_h it);
 int autofill_save_item_clone(autofill_save_item_h it, autofill_save_item_h *clone);
 
 /**
- * @brief Sets autofill hint (id(username), name, password, phone, credit card number, organization, so on) in autofill save item.
+ * @brief Sets the autofill hint (id(username), name, password, phone, credit card number, organization, so on) in an autofill save item.
  * @since_tizen 5.5
  * @param[in] it The autofill save item handle
  * @param[in] hint The autofill hint
@@ -993,7 +992,7 @@ int autofill_save_item_clone(autofill_save_item_h it, autofill_save_item_h *clon
 int autofill_save_item_set_autofill_hint(autofill_save_item_h it, autofill_hint_e hint);
 
 /**
- * @brief Gets autofill hint in autofill save item.
+ * @brief Gets the autofill hint in an autofill save item.
  * @since_tizen 5.5
  * @param[in] it The autofill save item handle
  * @param[out] hint The autofill hint
@@ -1004,7 +1003,7 @@ int autofill_save_item_set_autofill_hint(autofill_save_item_h it, autofill_hint_
 int autofill_save_item_get_autofill_hint(autofill_save_item_h it, autofill_hint_e *hint);
 
 /**
- * @brief Sets autofill ID in autofill save item.
+ * @brief Sets the autofill ID in an autofill save item.
  * @since_tizen 5.5
  * @param[in] it The autofill save item handle
  * @param[in] id The autofill ID
@@ -1015,7 +1014,7 @@ int autofill_save_item_get_autofill_hint(autofill_save_item_h it, autofill_hint_
 int autofill_save_item_set_id(autofill_save_item_h it, const char *id);
 
 /**
- * @brief Gets autofill ID in autofill save item.
+ * @brief Gets the autofill ID in an autofill save item.
  * @since_tizen 5.5
  * @remarks @a id must be released using free().
  * @param[in] it The autofill save item handle
@@ -1027,7 +1026,7 @@ int autofill_save_item_set_id(autofill_save_item_h it, const char *id);
 int autofill_save_item_get_id(autofill_save_item_h it, char **id);
 
 /**
- * @brief Sets autofill label in autofill save item.
+ * @brief Sets the autofill label in an autofill save item.
  * @since_tizen 5.5
  * @param[in] it The autofill save item handle
  * @param[out] label The autofill label
@@ -1038,7 +1037,7 @@ int autofill_save_item_get_id(autofill_save_item_h it, char **id);
 int autofill_save_item_set_label(autofill_save_item_h it, const char *label);
 
 /**
- * @brief Gets autofill label in autofill save item.
+ * @brief Gets the autofill label in an autofill save item.
  * @since_tizen 5.5
  * @remarks @a label must be released using free().
  * @param[in] it The autofill save item handle
@@ -1050,7 +1049,7 @@ int autofill_save_item_set_label(autofill_save_item_h it, const char *label);
 int autofill_save_item_get_label(autofill_save_item_h it, char **label);
 
 /**
- * @brief Sets sensitive data in autofill save item.
+ * @brief Sets the sensitive data in an autofill save item.
  * @since_tizen 5.5
  * @param[in] it The autofill save item handle
  * @param[in] sensitive The sensitive data or not
@@ -1061,7 +1060,7 @@ int autofill_save_item_get_label(autofill_save_item_h it, char **label);
 int autofill_save_item_set_sensitive_data(autofill_save_item_h it, bool sensitive);
 
 /**
- * @brief Gets sensitive data in autofill save item.
+ * @brief Gets the sensitive data in an autofill save item.
  * @since_tizen 5.5
  * @param[in] it The autofill save item handle
  * @param[out] sensitive The sensitive data or not
@@ -1072,7 +1071,7 @@ int autofill_save_item_set_sensitive_data(autofill_save_item_h it, bool sensitiv
 int autofill_save_item_get_sensitive_data(autofill_save_item_h it, bool *sensitive);
 
 /**
- * @brief Sets autofill value in autofill save item.
+ * @brief Sets the autofill value in an autofill save item.
  * @since_tizen 5.5
  * @param[in] it The autofill save item handle
  * @param[in] value The autofill value
@@ -1083,7 +1082,7 @@ int autofill_save_item_get_sensitive_data(autofill_save_item_h it, bool *sensiti
 int autofill_save_item_set_value(autofill_save_item_h it, const char *value);
 
 /**
- * @brief Gets autofill value in autofill save item.
+ * @brief Gets the autofill value in an autofill save item.
  * @since_tizen 5.5
  * @remarks @a value must be released using free().
  * @param[in] it The autofill save item handle