Merge "Add to support a multi-window mode" into devel_3.0_main
[platform/framework/native/appfw.git] / inc / FTextUcs2Encoding.h
index 40a2c17..1af58d9 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);
@@ -20,7 +19,7 @@
  * @brief              This is the header file for the %Ucs2Encoding class.
  *
  * This header file contains the declarations of the %Ucs2Encoding class.
- * The %Ucs2Encoding class is derived from the Encoding class.
+ * This class is derived from the Encoding class.
  */
 #ifndef _FTEXT_UCS2_ENCODING_H_
 #define _FTEXT_UCS2_ENCODING_H_
@@ -159,7 +158,7 @@ public:
         * @exception   E_UNDERFLOW              This operation has caused the memory to underflow, or
         *                                                                               the sum of the length of the specified @c charIndex and @c charCount is greater than the length of the specified @c chars.
         * @exception           E_INVALID_ENCODING_RANGE The specified string contains code points that are outside the bounds of the character encoding scheme.
-        * @remarks     GetByteCount() determines the exact number of bytes
+        * @remarks     This method determines the exact number of bytes
         *              that are produced if the given array of characters is encoded.
         * @see                 GetMaxByteCount()
         */
@@ -271,7 +270,7 @@ public:
         * @exception   E_INVALID_ARG            A specified input parameter is invalid, or
         *                                         the specified @c bytes is empty.
         * @exception   E_INVALID_ENCODING_RANGE The specified string contains code points that are outside the bounds of the character encoding scheme.
-        * @remarks     GetCharCount() determines the exact number of characters
+        * @remarks     This method determines the exact number of characters
         *              that are produced if the given range of bytes is converted.
         * @see                         GetMaxCharCount()
         */
@@ -295,7 +294,7 @@ public:
         * @exception   E_UNDERFLOW              This operation has caused the memory to underflow, or
         *                                                                         the sum of the length of the specified @c byteIndex and @c byteCount is greater than the length of the specified @c bytes.
         * @exception   E_INVALID_ENCODING_RANGE The specified string contains code points that are outside the bounds of the character encoding scheme.
-        * @remarks     GetCharCount() determines the exact number of characters
+        * @remarks     This method determines the exact number of characters
         *              that are produced if the given range of bytes is converted.
         * @see                         GetMaxCharCount()
         */
@@ -397,7 +396,7 @@ public:
        *
        * @return               The maximum number of bytes required for encoding the given number of characters
        * @param[in]    charCount The total number of characters to encode
-       * @remarks   GetMaxByteCount() determines an appropriate buffer size for the byte arrays passed to GetBytes() for encoding.
+       * @remarks   This method determines an appropriate buffer size for the byte arrays passed to GetBytes() for encoding.
        * @see                          GetByteCount()
        * @see                          GetBytes()
        */
@@ -411,7 +410,7 @@ public:
        *
        * @return                       The maximum number of characters generated by decoding the specified number of bytes
        * @param[in]            byteCount The total number of bytes to encode
-       * @remarks     GetMaxCharCount() determines an appropriate buffer size for the character arrays passed to
+       * @remarks     This method determines an appropriate buffer size for the character arrays passed to
        *                   GetChars() or a decoder for encoding.
        * @see                                  GetByteCount()
        * @see                                  GetChars()