summaryrefslogtreecommitdiff
path: root/src/include/utils_i18n_formattable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/utils_i18n_formattable.h')
-rw-r--r--src/include/utils_i18n_formattable.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/include/utils_i18n_formattable.h b/src/include/utils_i18n_formattable.h
index 98ab712..db05a96 100644
--- a/src/include/utils_i18n_formattable.h
+++ b/src/include/utils_i18n_formattable.h
@@ -51,7 +51,7 @@ extern "C" {
/**
* @brief Creates a new default #i18n_formattable_h.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks The created object should be released by the caller with the
* #i18n_formattable_destroy() function.
*
@@ -67,7 +67,7 @@ int i18n_formattable_create_default(i18n_formattable_h *formattable);
/**
* @brief Creates a new #i18n_formattable_h handle with an #i18n_udate instance.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks The created object should be released by the caller with the
* #i18n_formattable_destroy() function.
*
@@ -84,7 +84,7 @@ int i18n_formattable_create_with_udate(i18n_udate date, i18n_formattable_h *form
/**
* @brief Creates a new #i18n_formattable_h handle with a double value.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks The created object should be released by the caller with the
* #i18n_formattable_destroy() function.
*
@@ -101,7 +101,7 @@ int i18n_formattable_create_with_double(double value, i18n_formattable_h *format
/**
* @brief Creates a new #i18n_formattable_h handle with a long value.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks The created object should be released by the caller with the
* #i18n_formattable_destroy() function.
*
@@ -118,7 +118,7 @@ int i18n_formattable_create_with_long(int32_t value, i18n_formattable_h *formatt
/**
* @brief Creates a new #i18n_formattable_h handle with an int64_t value.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks The created object should be released by the caller with the
* #i18n_formattable_destroy() function.
*
@@ -136,7 +136,7 @@ int i18n_formattable_create_with_int64(int64_t value, i18n_formattable_h *format
/**
* @brief Creates a new #i18n_formattable_h handle with a char string pointer.
* @details Assumes that the char string is null terminated.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks The created object should be released by the caller with the
* #i18n_formattable_destroy() function.
*
@@ -154,7 +154,7 @@ int i18n_formattable_create_with_char_string(const char *str_to_copy, i18n_forma
/**
* @brief Creates a new #i18n_formattable_h handle with an array of
* #i18n_formattable_h handles.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks The created object should be released by the caller with the
* #i18n_formattable_destroy() function.
*
@@ -172,7 +172,7 @@ int i18n_formattable_create_with_formattable_array(const i18n_formattable_h *arr
/**
* @brief Releases the given #i18n_formattable_h handle.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object to be released
*
@@ -185,7 +185,7 @@ int i18n_formattable_destroy(i18n_formattable_h formattable);
/**
* @brief Clones the given formattable handle with the related object to the
* @a clone handle.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @details Clones can be used concurrently in multiple threads.
* @remarks The cloned object should be released by the caller with the
* #i18n_formattable_destroy() function.
@@ -203,7 +203,7 @@ int i18n_formattable_clone(i18n_formattable_h formattable, i18n_formattable_h *c
/**
* @brief Gets the array value and count of the given formattable object.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks If this object is not of type #I18N_FORMATTABLE_TYPE_ARRAY then the
* result is undefined. The obtained array should be released by the
* caller with the free() function.
@@ -222,7 +222,7 @@ int i18n_formattable_get_array(i18n_formattable_h formattable, i18n_formattable_
/**
* @brief Gets the date value of the given formattable object.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks If this object is not of type #I18N_FORMATTABLE_TYPE_DATE then the
* result is undefined.
*
@@ -238,7 +238,7 @@ int i18n_formattable_get_date(i18n_formattable_h formattable, i18n_udate *date);
/**
* @brief Gets the double value of the given formattable object.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks If this object is not of type #I18N_FORMATTABLE_TYPE_DOUBLE then the
* result is undefined.
*
@@ -254,7 +254,7 @@ int i18n_formattable_get_double(i18n_formattable_h formattable, double *value);
/**
* @brief Gets the int64 value of the given formattable object.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks If this object is not of type #I18N_FORMATTABLE_TYPE_INT64 then the
* result is undefined.
*
@@ -274,7 +274,7 @@ int i18n_formattable_get_int64(i18n_formattable_h formattable, int64_t *value);
* minimum long value, as appropriate, is set to @a value
* and the #I18N_ERROR_INVALID_FORMAT error code is returned by the
* function.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[out] value A pointer to a int32_t variable which will be filled
@@ -288,7 +288,7 @@ int i18n_formattable_get_long(i18n_formattable_h formattable, int32_t *value);
/**
* @brief Gets the string value of the given formattable object.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks If the type is not a string, the function returns the
* #I18N_ERROR_INVALID_FORMAT error code and the value is set to @c
* NULL. The @a value should be released by the caller with the free() function.
@@ -308,7 +308,7 @@ int i18n_formattable_get_string(i18n_formattable_h formattable, char **value);
/**
* @brief Gets the data type of the given formattable object.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[out] type A pointer to an #i18n_formattable_type_e variable which
@@ -325,7 +325,7 @@ int i18n_formattable_get_type(i18n_formattable_h formattable, i18n_formattable_t
* @brief Sets the variable pointed by the @a is_numeric pointer to @c true if
* the data type of the given formattable object is #I18N_FORMATTABLE_TYPE_DOUBLE,
* #I18N_FORMATTABLE_TYPE_LONG or #I18N_FORMATTABLE_TYPE_INT64.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[out] is_numeric A pointer to a boolean variable which will be filled by
@@ -341,7 +341,7 @@ int i18n_formattable_is_numeric(i18n_formattable_h formattable, bool *is_numeric
* @brief Sets the variable pointed by the @a not_equal pointer to @c true if
* the given @a formattable object is not equal to the given @a other
* formattable object.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[in] other A handle to the other formattable object
@@ -358,7 +358,7 @@ int i18n_formattable_not_equal(i18n_formattable_h formattable, i18n_formattable_
* @brief Sets the variable pointed by the @a equal pointer to @c true if the
* given @a formattable object is equal to the given @a other
* formattable object.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[in] other A handle to the other formattable object
@@ -375,7 +375,7 @@ int i18n_formattable_equal(i18n_formattable_h formattable, i18n_formattable_h ot
* @brief Sets the object pointed by the @a element pointer to the element at
* the @a index position in the array stored by the given formattable
* object (if its type is #I18N_FORMATTABLE_TYPE_ARRAY).
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
* @remarks If this object is not of type #I18N_FORMATTABLE_TYPE_ARRAY then the
* result is undefined.
*
@@ -399,7 +399,7 @@ int i18n_formattable_element_at(i18n_formattable_h formattable, int32_t index, i
/**
* @brief Sets the array value and count of the given formattable object and
* changes the type to #I18N_FORMATTABLE_TYPE_ARRAY.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[in] array An array of handles to the formattable objects
@@ -414,7 +414,7 @@ int i18n_formattable_set_array(i18n_formattable_h formattable, const i18n_format
/**
* @brief Sets the date value of the given formattable object and changes the
* type to the #I18N_FORMATTABLE_TYPE_DATE.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[in] date The new i18n_udate value to be set
@@ -428,7 +428,7 @@ int i18n_formattable_set_date(i18n_formattable_h formattable, i18n_udate date);
/**
* @brief Sets the double value of the given formattable object and changes
* the type to the #I18N_FORMATTABLE_TYPE_DOUBLE.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[in] value The new double value to be set
@@ -442,7 +442,7 @@ int i18n_formattable_set_double(i18n_formattable_h formattable, double value);
/**
* @brief Sets the int64 value of the given formattable object and changes the
* type to the #I18N_FORMATTABLE_TYPE_INT64.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[in] value The new int64_t value to be set
@@ -456,7 +456,7 @@ int i18n_formattable_set_int64(i18n_formattable_h formattable, int64_t value);
/**
* @brief Sets the long value of the given formattable object and changes the
* type to the #I18N_FORMATTABLE_TYPE_LONG.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[in] value The new int32_t value to be set
@@ -470,7 +470,7 @@ int i18n_formattable_set_long(i18n_formattable_h formattable, int32_t value);
/**
* @brief Sets the string value of the given formattable object and changes
* the type to the #I18N_FORMATTABLE_TYPE_STRING.
- * @since_tizen 2.3.2 and 3.0
+ * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif
*
* @param[in] formattable A handle to the formattable object
* @param[in] string_to_copy The new string value to be set