X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseCharacter.h;h=483894eb185d476d94c875d2f2e5432bdbcbfddb;hb=f26b0f83d7c103adbd5468d05b5b89772563041f;hp=08c231616dd571037a927c0398f7d8e7f5ae7262;hpb=84ae32fc9014edf1457554db60000885285034ff;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseCharacter.h b/inc/FBaseCharacter.h index 08c2316..483894e 100644 --- a/inc/FBaseCharacter.h +++ b/inc/FBaseCharacter.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); @@ -148,7 +147,7 @@ public: * @li == 0 if the value of the current instance is equal to the value of the input instance * @li > 0 if the value of the current instance is greater than the value of the input instance * @endcode - * + * */ int CompareTo(const Character& value) const; @@ -159,7 +158,7 @@ public: * @since 2.0 * @return @c true if the input Object is equal to the calling %Object, @n * else @c false - * @param[in] obj The object to compare with the calling object + * @param[in] obj The object to compare with the calling object * @see Tizen::Base::Object::Equals() */ virtual bool Equals(const Object& obj) const; @@ -332,7 +331,7 @@ public: * @since 2.0 * @if OSPCOMPAT * @compatibility This method has compatibility issues with OSP compatible applications. @n - * For more information, see @ref CompCharacterIsAlphaNumericPage "here". + * For more information, see @ref CompCharacterIsAlphaNumericPage "here". * @endif * @return @c true if the input character is alphanumeric, @n * else @c false @@ -344,7 +343,7 @@ public: * @if OSPCOMPAT * @page CompCharacterIsAlphaNumericPage Compatibility for IsAlphaNumeric() * @section CompCharacterIsAlphaNumericPageIssueSection Issues - * Implementing this method in OSP compatible applications has the following issues: @n + * Implementing this method in OSP compatible applications has the following issues: @n * * -# The method returns true only if the character is alphabet character and cannot checks other Unicode character in Letter and digit category. * @@ -374,7 +373,7 @@ public: * @since 2.0 * @if OSPCOMPAT * @compatibility This method has compatibility issues with OSP compatible applications. @n - * For more information, see @ref CompCharacterIsLetterPage "here". + * For more information, see @ref CompCharacterIsLetterPage "here". * @endif * @return @c true if the input character is an alphabet, @n * else @c false @@ -386,7 +385,7 @@ public: * @if OSPCOMPAT * @page CompCharacterIsLetterPage Compatibility for IsLetter() * @section CompCharacterIsLetterPageIssueSection Issues - * Implementing this method in OSP compatible applications has the following issues: @n + * Implementing this method in OSP compatible applications has the following issues: @n * * -# The method returns true only if the character is alphabet character and cannot checks other Unicode character in Letter category. * @@ -454,7 +453,7 @@ public: /** * Returns the value of the input character in the supplied radix. @n - * The value of radix must be between RADIX_MIN and RADIX_MAX. + * The value of radix must be between RADIX_MIN and RADIX_MAX. * * @since 2.0 * @@ -466,7 +465,7 @@ public: /** * Returns the value which represents the input digit with specified radix. @n - * The value of radix must be between RADIX_MIN and RADIX_MAX. + * The value of radix must be between RADIX_MIN and RADIX_MAX. * * @since 2.0 * @@ -479,7 +478,7 @@ public: /** * Gets the numeric value of the input unicode character. @n - * This is used when some numeric values are fractions, negative, or too large for @c int value. + * This is used when some numeric values are fractions, negative, or too large for @c int value. * * @since 2.0 * @@ -494,7 +493,7 @@ public: * @since 2.0 * * @return @c true if the Unicode character is an assigned character, @n - * else @c false + * else @c false * @param[in] ch A Unicode character */ static bool IsDefined(wchar_t ch); @@ -506,7 +505,7 @@ public: * @since 2.0 * * @return @c true if the Unicode character is a whitespace character, @n - * else @c false + * else @c false * @param[in] ch A Unicode character * * @code @@ -531,7 +530,7 @@ public: * @since 2.0 * * @return @c true if the Unicode character is a title character, @n - * else @c false + * else @c false * @param[in] ch A Unicode character */ static bool IsTitleCase(wchar_t ch); @@ -552,7 +551,7 @@ public: * @since 2.0 * * @return @c true if the Unicode character is an ISO control character, @n - * else @c false + * else @c false * @param[in] ch A Unicode character */ static bool IsISOControl(wchar_t ch); @@ -631,7 +630,7 @@ private: wchar_t __val; friend class _CharacterImpl; - class _CharacterImpl * __pCharacterImpl; + class _CharacterImpl* __pCharacterImpl; }; // Character