X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseObject.h;h=f75eb44180dbd082bcf3db26b188b630ddb2c0a9;hb=HEAD;hp=ec2152592897593dc1a8e1ab423c941acc8700cd;hpb=723d0fcd5d234294f98cfa2f3c42e353bb7159ab;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseObject.h b/inc/FBaseObject.h index ec21525..f75eb44 100644 --- a/inc/FBaseObject.h +++ b/inc/FBaseObject.h @@ -65,9 +65,11 @@ public: * @return @c true if the value of the specified instance of %Object is equal to the value of the current instance of %Object, @n * else @c false * @param[in] obj An instance of %Object to compare - * @remarks The default implementation of this method returns @c true - * if the two instances have the same address. @n - * The method can be overridden to support value equality. Furthermore, this method must return the same result as the equality operator. + * @remarks + * - The default implementation of this method returns @c true, + * if the two instances have the same address. + * - The method can be overridden to support value equality. + * Furthermore, this method must return the same result as the equality operator. */ virtual bool Equals(const Object& obj) const; @@ -76,10 +78,11 @@ public: * * @since 2.0 * - * @return An integer value indicating the hash value of the current instance of %Object - * @remarks Two equal instances must return the same hash value. For better performance, - * the used hash function must generate a random distribution for all inputs. @n - * The default implementation of this method returns the address of the current instance. + * @return The integer value that indicates the hash value of the current instance of %Object + * @remarks + * - Two equal instances must return the same hash value. @n + * For better performance, the used hash function must generate a random distribution for all the inputs. + * - The default implementation of this method returns the address of the current instance. */ virtual int GetHashCode(void) const;