Fix N_SE-56436 for Screen lock.
[platform/framework/native/appfw.git] / inc / FBaseInt8Comparer.h
index e744f4a..842d8a2 100644 (file)
  * @file               FBaseInt8Comparer.h
  * @brief              This is the header file for the %Int8Comparer class.
  *
- * @see                        Int8 and Tizen::Base::Collection::IComparer
- *
  * This header file contains the declarations of the %Int8Comparer class.
+ *
+ * @see                        Int8
+ * @see                        Tizen::Base::Collection::IComparer
  */
 #ifndef _FBASE_INT8_COMPARER_H_
 #define _FBASE_INT8_COMPARER_H_
 #include <FBaseObject.h>
 #include <FBaseColIComparer.h>
 
-
 namespace Tizen { namespace Base
 {
 /**
  *     @class  Int8Comparer
- *     @brief  This class checks for equivalence between 2 instances of the Int8 type.
+ *     @brief  This class checks for equivalence between two instances of the %Int8 type.
  *
  *     @since 2.0
  *
- *     The %Int8Comparer class checks for equivalence between 2 instances of the Int8 type.
+ *     The %Int8Comparer class checks for equivalence between two instances of the Int8 type.
  *
  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/base/collection_comparison.htm">Collection Comparisons</a>.
  *
@@ -92,17 +92,17 @@ public:
         *      @since 2.0
         *
         *  @return             An error code
-        *      @param[in]      obj1    The first instance of type Int8
-        *      @param[in]      obj2    The second instance of type Int8
-        *  @param[out]  cmp            The result of comparison
+        *  @param[in]  obj1                    The first instance of type Int8
+        *  @param[in]  obj2                    The second instance of type Int8
+        *  @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
+        *      @code
+        *      <  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;
@@ -120,7 +120,7 @@ private:
        Int8Comparer& operator =(const Int8Comparer& rhs);
 
        friend class _Int8ComparerImpl;
-       class _Int8ComparerImpl * __pInt8ComparerImpl;
+       class _Int8ComparerImpl* __pInt8ComparerImpl;
 
 }; // Int8Comparer