X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseStringComparer.h;h=943f9a4114f306a93cf1edcf58e7cc28d875e6b7;hb=ebb2ea372f640b8fe09dc5a85abb29bb349508fa;hp=c0a8f4d78eb8b8066ef10d92c57c3e917a4fbbb1;hpb=6b44196c40a66b895028f7ba2e9b5e41bc715ab2;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseStringComparer.h b/inc/FBaseStringComparer.h index c0a8f4d..943f9a4 100644 --- a/inc/FBaseStringComparer.h +++ b/inc/FBaseStringComparer.h @@ -1,5 +1,4 @@ // -// Open Service Platform // Copyright (c) 2012 Samsung Electronics Co., Ltd. // // Licensed under the Apache License, Version 2.0 (the License); @@ -16,12 +15,13 @@ // /** - * @file FBaseStringComparer.h + * @file FBaseStringComparer.h * @brief This is the header file for the %StringComparer class. * - * @see String and Tizen::Base::Collection::IComparer - * * This header file contains the declarations of the %StringComparer class. + * + * @see String + * @see Tizen::Base::Collection::IComparer */ #ifndef _FBASE_STRING_COMPARER_H_ #define _FBASE_STRING_COMPARER_H_ @@ -36,11 +36,11 @@ namespace Tizen { namespace Base { /** * @class StringComparer - * @brief This class checks for equivalence between 2 instances of the String type. + * @brief This class checks for equivalence between two instances of the %String type. * * @since 2.0 * - * The %StringComparer class checks for equivalence between 2 instances of the String type. + * The %StringComparer class checks for equivalence between two instances of the String type. * * For more information on the class features, see Collection Comparisons. * @@ -93,17 +93,17 @@ public: * @since 2.0 * * @return An error code - * @param[in] obj1 An object of String to compare - * @param[in] obj2 An object of String to compare - * @param[out] cmp The result of comparison + * @param[in] obj1 The object of String to compare + * @param[in] obj2 The object of String to compare + * @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;