X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseLongLongComparer.h;h=9a3ef394a9cd5ee5f24a3adcb0fb3a653b3284bb;hb=72749ddd32dd1e3e2833ada50fad8fceefbdcddc;hp=722464edd3f576a3f07a0d63e55cdf23ca1fda40;hpb=ba579df8b7bd47e2875e4833455443f56683ee01;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseLongLongComparer.h b/inc/FBaseLongLongComparer.h index 722464e..9a3ef39 100644 --- a/inc/FBaseLongLongComparer.h +++ b/inc/FBaseLongLongComparer.h @@ -18,9 +18,11 @@ * @file FBaseLongLongComparer.h * @brief This is the header file for the %LongLongComparer class. * - * @see Long and Tizen::Base::Collection::IComparer * * This header file contains the declarations of the %LongLongComparer class. + * + * @see Long + * @see Tizen::Base::Collection::IComparer */ #ifndef _FBASE_LONG_LONG_COMPARER_H_ #define _FBASE_LONG_LONG_COMPARER_H_ @@ -33,11 +35,11 @@ namespace Tizen { namespace Base { /** * @class LongLongComparer - * @brief This class checks for equivalence between 2 instances of the %LongLong type. + * @brief This class checks for equivalence between two instances of the %LongLong type. * * @since 2.0 * - * The %LongLongComparer class checks for equivalence between 2 instances of the %LongLong type. + * The %LongLongComparer class checks for equivalence between two instances of the LongLong type. * * For more information on the class features, see Collection Comparisons. * @@ -91,15 +93,15 @@ public: * @return An error code * @param[in] obj1 The first instance of type LongLong * @param[in] obj2 The second instance of type LongLong - * @param[out] cmp The result of comparison + * @param[out] cmp The result of the comparison * @exception E_SUCCESS The method is successful. * @exception E_INVALID_ARG The specified object instances are not of the expected type. * @remarks The value of @c cmp can be: * * @code - * < 0 if the value of @c obj1 is less than the value of @c obj2 - * == 0 if the value of @c obj1 is equal to the value of @c obj2 - * > 0 if the value of @c obj1 is greater than the value of @c obj2 + * < 0 if the value of obj1 is less than the value of obj2 + * == 0 if the value of obj1 is equal to the value of obj2 + * > 0 if the value of obj1 is greater than the value of obj2 * @endcode */ virtual result Compare(const Tizen::Base::Object& obj1, const Tizen::Base::Object& obj2, int& cmp) const;