Flush app registry before releasing file lock
[platform/framework/native/appfw.git] / inc / FBaseColIComparer.h
index a01b19e..a210d4e 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
 #include <FBaseTypes.h>
 #include <FBaseObject.h>
 
-
 namespace Tizen { namespace Base { namespace Collection
 {
 /**
- * @interface IComparer
- * @brief This interface allows a derived class to compare 2 objects of the same type.
+ * @interface  IComparer
+ * @brief              This interface allows a derived class to compare two objects of the same type.
  *
  * @since 2.0
  *
- * The %IComparer interface allows a derived class to compare 2 objects of the same type.
+ * The %IComparer interface allows a derived class to compare two objects of the same type.
  */
 class _OSP_EXPORT_ IComparer
 {
@@ -58,15 +56,15 @@ public:
         * @return              An error code
         * @param[in]   obj1    The first object to compare
         * @param[in]   obj2    The second object to compare
-        * @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 = 0;