X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseTimeSpan.h;h=fe0a1db80e7319b6d91ed25c69d0897d25971768;hb=72749ddd32dd1e3e2833ada50fad8fceefbdcddc;hp=fd15b5a5fff82f90a2c26bc3943dccb5e2507d4c;hpb=ba579df8b7bd47e2875e4833455443f56683ee01;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseTimeSpan.h b/inc/FBaseTimeSpan.h index fd15b5a..fe0a1db 100644 --- a/inc/FBaseTimeSpan.h +++ b/inc/FBaseTimeSpan.h @@ -197,24 +197,24 @@ public: bool operator !=(const TimeSpan& rhs) const; /** - * Checks whether the value of the calling instance is less than that of - * the specified instance of %TimeSpan. + * Checks whether the value of the calling instance is less than + * the value of the specified instance of %TimeSpan. * * @since 2.0 * - * @return @c true if the value of the calling instance is less than that of the specified instance of %TimeSpan, @n + * @return @c true if the value of the calling instance is less than the value of the specified instance of %TimeSpan, @n * else @c false * @param[in] rhs An instance of %TimeSpan to compare */ bool operator <(const TimeSpan& rhs) const; /** - * Checks whether the value of the calling instance is greater than that of - * the specified instance of %TimeSpan. + * Checks whether the value of the calling instance is greater than + * the value of the specified instance of %TimeSpan. * * @since 2.0 * - * @return @c true if the value of the calling instance is greater than that of the specified instance of %TimeSpan, @n + * @return @c true if the value of the calling instance is greater than the value of the specified instance of %TimeSpan, @n * else @c false * @param[in] rhs An instance of %TimeSpan to compare */ @@ -249,14 +249,14 @@ public: * * @since 2.0 * - * @return A 32-bit @c signed integer value + * @return The 32-bit @c signed integer value * @param[in] t1 An instance of %TimeSpan to compare * @param[in] t2 An instance of %TimeSpan to compare * * @code - * < 0 if the value of @c t1 is less than the value of @c t2 - * == 0 if the value of @c t1 is equal to the value of @c t2 - * > 0 if the value of @c t1 is greater than the value of @c t2 + * < 0 if the value of t1 is less than the value of t2 + * == 0 if the value of t1 is equal to the value of t2 + * > 0 if the value of t1 is greater than the value of t2 * @endcode */ static int Compare(const TimeSpan& t1, const TimeSpan& t2); @@ -266,13 +266,13 @@ public: * * @since 2.0 * - * @return A 32-bit @c signed integer value + * @return The 32-bit @c signed integer value * @param[in] value An instance of %TimeSpan to compare * * @code - * < 0 if the value of the current instance is less than the value of @c obj - * == 0 if the value of the current instance is equal to the value of @c obj - * > 0 if the value of the current instance is greater than the value of @c obj + * < 0 if the value of the current instance is less than the value of obj + * == 0 if the value of the current instance is equal to the value of obj + * > 0 if the value of the current instance is greater than the value of obj * @endcode */ int CompareTo(const TimeSpan& value) const; @@ -294,8 +294,8 @@ public: * * @since 2.0 * - * @return An instance of %TimeSpan containing the absolute value - * @remarks This method is used to get absolute difference between two %TimeSpan instances. + * @return An instance of %TimeSpan that contains the absolute value + * @remarks This method is used to get the absolute difference between two %TimeSpan instances. * * @code * TimeSpan t1(1000); // 1000 milliseconds @@ -321,7 +321,7 @@ public: * * @since 2.0 * - * @return An instance of %Timespan containing the negative value of the calling instance + * @return An instance of %Timespan that contains the negative value of the calling instance */ TimeSpan Negate(void) const; @@ -380,28 +380,28 @@ public: long long GetTicks(void) const; /** - * A constant holding the number of ticks in a day. + * The constant holding the number of ticks in a day. * * @since 2.0 */ static const long long NUM_OF_TICKS_IN_DAY = 86400000LL; /** - * A constant holding the number of ticks in an hour. + * The constant holding the number of ticks in an hour. * * @since 2.0 */ static const long long NUM_OF_TICKS_IN_HOUR = 3600000LL; /** - * A constant holding the number of ticks in a minute. + * The constant holding the number of ticks in a minute. * * @since 2.0 */ static const long long NUM_OF_TICKS_IN_MINUTE = 60000LL; /** - * A constant holding the number of ticks in a second. + * The constant holding the number of ticks in a second. * * @since 2.0 */