From 6a01fae69a47f0e5d28a54270c674b3eb769905e Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Wed, 8 May 2019 13:58:05 +0900 Subject: [PATCH] Use appropriate preposition in doxygen of getting APIs Change-Id: Ib157a500532149b9874727b83dbe361d5c5d7bfc Signed-off-by: Jihoon Kim --- include/autofill_common.h | 58 +++++++++++++++++++++++------------------------ 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/include/autofill_common.h b/include/autofill_common.h index 6d8d1da..5a6ad96 100644 --- a/include/autofill_common.h +++ b/include/autofill_common.h @@ -208,7 +208,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 the autofill hint in an autofill item. + * @brief Gets the autofill hint from an autofill item. * @since_tizen 5.5 * @param[in] it The autofill item handle * @param[out] hint The autofill hint @@ -230,7 +230,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 the autofill ID in an autofill item. + * @brief Gets the autofill ID from an autofill item. * @since_tizen 5.5 * @remarks @a id must be released using free(). * @param[in] it The autofill item handle @@ -254,7 +254,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 the autofill label in an autofill item. + * @brief Gets the autofill label from 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_get_label(autofill_item_h it, char **label); int autofill_item_set_sensitive_data(autofill_item_h it, bool sensitive); /** - * @brief Gets the sensitive data in an autofill item. + * @brief Gets the sensitive data from 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_get_sensitive_data(autofill_item_h it, bool *sensitive); int autofill_item_set_value(autofill_item_h it, const char *value); /** - * @brief Gets the autofill value in an autofill item. + * @brief Gets the autofill value from an autofill item. * @since_tizen 5.5 * @remarks @a value must be released using free(). * @param[in] it The autofill item handle @@ -346,7 +346,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 the app id in autofill authentication information. + * @brief Gets the app id from autofill authentication information. * @since_tizen 5.5 * @remarks @a app_id must be released using free(). * @param[in] ai The autofill authentication information handle @@ -370,7 +370,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 the view id in autofill authentication information. + * @brief Gets the view id from autofill authentication information. * @since_tizen 5.5 * @remarks @a view_id must be released using free(). * @param[in] ai The autofill authentication information handle @@ -394,7 +394,7 @@ int autofill_auth_info_get_view_id(autofill_auth_info_h ai, char **view_id); int autofill_auth_info_set_autofill_data_present(autofill_auth_info_h ai, bool autofill_data_present); /** - * @brief Gets the 'autofill data present' attribute in autofill authentication information. + * @brief Gets the 'autofill data present' attribute from autofill authentication information. * @since_tizen 5.5 * @param[in] ai The autofill authentication information handle * @param[out] autofill_data_present The autofill data presence @@ -416,7 +416,7 @@ int autofill_auth_info_get_autofill_data_present(autofill_auth_info_h ai, bool * int autofill_auth_info_set_authentication_needed(autofill_auth_info_h ai, bool authentication_needed); /** - * @brief Gets the 'authentication needed' attribute in autofill authentication information. + * @brief Gets the 'authentication needed' attribute from autofill authentication information. * @since_tizen 5.5 * @param[in] ai The autofill authentication information handle * @param[out] authentication_needed The authentication need @@ -438,7 +438,7 @@ int autofill_auth_info_get_authentication_needed(autofill_auth_info_h ai, bool * int autofill_auth_info_set_service_name(autofill_auth_info_h ai, const char *service_name); /** - * @brief Gets the service name in autofill authentication information. + * @brief Gets the service name from autofill authentication information. * @since_tizen 5.5 * @remarks @a service_name must be released using free(). * @param[in] ai The autofill authentication information handle @@ -462,7 +462,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 the service message in autofill authentication information. + * @brief Gets the service message from autofill authentication information. * @since_tizen 5.5 * @remarks @a service_message must be released using free(). * @param[in] ai The autofill authentication information handle @@ -486,7 +486,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 the service logo image path in autofill authentication information. + * @brief Gets the service logo image path from 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 @@ -532,7 +532,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 the app id in autofill view information. + * @brief Gets the app id from autofill view information. * @since_tizen 5.5 * @remarks @a app_id must be released using free(). * @param[in] vi The autofill view info handle @@ -556,7 +556,7 @@ int autofill_view_info_get_app_id(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 the view id in autofill view information. + * @brief Gets the view id from autofill view information. * @since_tizen 5.5 * @remarks @a view_id must be released using free(). * @param[in] vi The autofill view info handle @@ -625,7 +625,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 the app ID in autofill save view information. + * @brief Gets the app ID from 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 @@ -649,7 +649,7 @@ int autofill_save_view_info_get_app_id(autofill_save_view_info_h vi, char **app_ int autofill_save_view_info_set_view_id(autofill_save_view_info_h vi, const char *view_id); /** - * @brief Gets the view ID in autofill save view information. + * @brief Gets the view ID from 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 @@ -673,7 +673,7 @@ int autofill_save_view_info_get_view_id(autofill_save_view_info_h vi, char **vie int autofill_save_view_info_set_view_title(autofill_save_view_info_h vi, const char *view_title); /** - * @brief Gets the view title in autofill save view information. + * @brief Gets the view title from autofill save view information. * @since_tizen 5.5 * @remarks @a view_title must be released using free(). * @param[in] vi The autofill view info handle @@ -741,7 +741,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 the app ID in an autofill fill response. + * @brief Gets the app ID from 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 @@ -765,7 +765,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 the view ID in an autofill fill response. + * @brief Gets the view ID from 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 @@ -919,7 +919,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 the autofill ID in an autofill fill response item. + * @brief Gets the autofill ID from 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 @@ -943,7 +943,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 the autofill value in an autofill fill response item. + * @brief Gets the autofill value from 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 @@ -967,7 +967,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 the presentation text in an autofill fill response item. + * @brief Gets the presentation text from 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 @@ -1024,7 +1024,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 the autofill hint in an autofill save item. + * @brief Gets the autofill hint from an autofill save item. * @since_tizen 5.5 * @param[in] it The autofill save item handle * @param[out] hint The autofill hint @@ -1046,7 +1046,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 the autofill ID in an autofill save item. + * @brief Gets the autofill ID from an autofill save item. * @since_tizen 5.5 * @remarks @a id must be released using free(). * @param[in] it The autofill save item handle @@ -1070,7 +1070,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 the autofill label in an autofill save item. + * @brief Gets the autofill label from an autofill save item. * @since_tizen 5.5 * @remarks @a label must be released using free(). * @param[in] it The autofill save item handle @@ -1094,7 +1094,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 the sensitive data in an autofill save item. + * @brief Gets the sensitive data from an autofill save item. * @since_tizen 5.5 * @param[in] it The autofill save item handle * @param[out] sensitive The sensitive data or not @@ -1116,7 +1116,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 the autofill value in an autofill save item. + * @brief Gets the autofill value from an autofill save item. * @since_tizen 5.5 * @remarks @a value must be released using free(). * @param[in] it The autofill save item handle @@ -1162,7 +1162,7 @@ int autofill_error_info_destroy(autofill_error_info_h ei); int autofill_error_info_set_app_id(autofill_error_info_h ei, const char *app_id); /** - * @brief Gets the app id in autofill error information. + * @brief Gets the app id from autofill error information. * @since_tizen 5.5 * @remarks @a app_id must be released using free(). * @param[in] ei The autofill error information handle @@ -1186,7 +1186,7 @@ int autofill_error_info_get_app_id(autofill_error_info_h ei, char **app_id); int autofill_error_info_set_error_code(autofill_error_info_h ei, autofill_error_e error_code); /** - * @brief Gets the error code in autofill error information. + * @brief Gets the error code from autofill error information. * @since_tizen 5.5 * @param[in] ei The autofill error information handle * @param[out] error_code The autofill error code -- 2.7.4