From b71fb472878d00100e1d745a92170cbe7e8df701 Mon Sep 17 00:00:00 2001 From: Hyunbin Lee Date: Sat, 20 Apr 2013 13:30:00 +0900 Subject: [PATCH] Update reviewed Tizen::Io doxygen Change-Id: I25346055c892c22c5d5af49b27558a2165af578f Signed-off-by: Hyunbin Lee --- inc/FAppDataControlProviderManager.h | 2 +- inc/FAppMapDataControl.h | 9 ++++---- inc/FAppSqlDataControl.h | 18 +++++++-------- inc/FIoDataRow.h | 10 ++++---- inc/FIoDataSet.h | 23 +++++++++--------- inc/FIoDataSetEnumerator.h | 45 ++++++++++++++++++------------------ inc/FIoDirEntry.h | 4 ++-- inc/FIoMessagePortManager.h | 4 ++-- inc/FIoRemoteMessagePort.h | 4 ++-- 9 files changed, 59 insertions(+), 60 deletions(-) diff --git a/inc/FAppDataControlProviderManager.h b/inc/FAppDataControlProviderManager.h index 9170c76..0fa3fe5 100644 --- a/inc/FAppDataControlProviderManager.h +++ b/inc/FAppDataControlProviderManager.h @@ -218,7 +218,7 @@ public: * @exception E_OBJ_NOT_FOUND The data control request specified with the @c reqId did not exist. * @exception E_MAX_EXCEEDED The size of sending buffer has exceeded the maximum limit. * @exception E_SYSTEM The method cannot proceed due to a severe system error. - * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 16KB size. + * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 16KB size. * @see Tizen::App::DataControlProviderManager::SendSqlDataControlSelectResult() * @see Tizen::App::DataControlProviderManager::SendSqlDataControlInsertResult() * @see Tizen::App::DataControlProviderManager::SendSqlDataControlUpdateDeleteResult() diff --git a/inc/FAppMapDataControl.h b/inc/FAppMapDataControl.h index 988203b..03f5c2b 100755 --- a/inc/FAppMapDataControl.h +++ b/inc/FAppMapDataControl.h @@ -96,6 +96,7 @@ class IMapDataControlResponseListener; * * @endcode */ + class _OSP_EXPORT_ MapDataControl : public Tizen::Base::Object { @@ -138,7 +139,7 @@ public: * - The size of sending buffer has exceeded the maximum limit. * - The number of sending requests has exceeded the maximum limit. * @exception E_SYSTEM A system error has occurred. - * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 16KB size. + * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 16KB size. */ result GetValue(const Tizen::Base::String& dataId, const Tizen::Base::String& key, RequestId& reqId, int pageNo = 1, int countPerPage = 20); @@ -167,7 +168,7 @@ public: * - The size of sending buffer has exceeded the maximum limit. * - The number of sending requests has exceeded the maximum limit. * @exception E_SYSTEM A system error has occurred. - * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 16KB size. + * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 16KB size. */ result AddValue(const Tizen::Base::String& dataId, const Tizen::Base::String& key, const Tizen::Base::String& value, RequestId& reqId); @@ -198,7 +199,7 @@ public: * - The size of sending buffer has exceeded the maximum limit. * - The number of sending requests has exceeded the maximum limit. * @exception E_SYSTEM A system error has occurred. - * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 16KB size. + * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 16KB size. */ result SetValue(const Tizen::Base::String& dataId, const Tizen::Base::String& key, const Tizen::Base::String& oldValue, const Tizen::Base::String& newValue, RequestId& reqId); @@ -227,7 +228,7 @@ public: * - The size of sending buffer has exceeded the maximum limit. * - The number of sending requests has exceeded the maximum limit. * @exception E_SYSTEM A system error has occurred. - * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 16KB size. + * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 16KB size. */ result RemoveValue(const Tizen::Base::String& dataId, const Tizen::Base::String& key, const Tizen::Base::String& value, RequestId& reqId); diff --git a/inc/FAppSqlDataControl.h b/inc/FAppSqlDataControl.h index baee6a8..bcf2b0a 100755 --- a/inc/FAppSqlDataControl.h +++ b/inc/FAppSqlDataControl.h @@ -156,14 +156,14 @@ public: * @exception E_ILLEGAL_ACCESS Either of the following conditions has occurred: @n * - Access is denied due to insufficient permission. * - The application using this method is not signed with the same certificate of provider application. @b Since: @b 2.1 - * @exception E_MAX_EXCEEDED Either of the following conditions has occurred: @n + * @exception E_MAX_EXCEEDED Either of the following conditions has occurred: * - The size of sending buffer has exceeded the maximum limit. * - The number of sending requests has exceeded the maximum limit. * @exception E_SYSTEM A system error has occurred. * @remarks If the value specified in the @c pWhere is string, the value must be wrapped in * single quotes. Otherwise it is not needed to wrap the numeric value in single quotes. * For more information on the SQL statement, see SQLite SQL documents. - * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 16KB size. + * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 16KB size. */ result Select(const Tizen::Base::String& dataId, const Tizen::Base::Collection::IList* pColumnList, const Tizen::Base::String* pWhere, const Tizen::Base::String *pOrder, RequestId& reqId, @@ -192,14 +192,14 @@ public: * @exception E_ILLEGAL_ACCESS Either of the following conditions has occurred: @n * - Access is denied due to insufficient permission. * - The application using this method is not signed with the same certificate of provider application. @b Since: @b 2.1 - * @exception E_MAX_EXCEEDED Either of the following conditions has occurred: @n + * @exception E_MAX_EXCEEDED Either of the following conditions has occurred: * - The size of sending buffer has exceeded the maximum limit. * - The number of sending requests has exceeded the maximum limit. * @exception E_SYSTEM A system error has occurred. * @remarks If the value specified in the @c insertMap is string, the value must be wrapped in * single quotes. Otherwise it is not needed to wrap the numeric value in single quotes. * For more information on the SQL statement, see SQLite SQL documents. - * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 16KB size. + * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 16KB size. */ result Insert(const Tizen::Base::String& dataId, const Tizen::Base::Collection::IMap& insertMap, RequestId& reqId); @@ -218,7 +218,7 @@ public: * The string consists of one or more components, separated by a slash('/'). * @param[in] updateMap The column-value pairs to update @n * The type of objects contained in the specified @c updateMap must be - * Tizen::Base::String class. @n + * Tizen::Base::String class. * @param[in] pWhere A filter to select desired rows to update @n * It is an SQL 'WHERE' clause excluding the 'WHERE' itself such as * column1 = 'stringValue' AND column2 = numericValue. @@ -229,14 +229,14 @@ public: * @exception E_ILLEGAL_ACCESS Either of the following conditions has occurred: @n * - Access is denied due to insufficient permission. * - The application using this method is not signed with the same certificate of provider application. @b Since: @b 2.1 - * @exception E_MAX_EXCEEDED Either of the following conditions has occurred: @n + * @exception E_MAX_EXCEEDED Either of the following conditions has occurred: * - The size of sending buffer has exceeded the maximum limit. * - The number of sending requests has exceeded the maximum limit. * @exception E_SYSTEM A system error has occurred. * @remarks If the value specified in the @c pWhere or @c updateMap is string, the value must be wrapped in * single quotes. Otherwise it is not needed to wrap the numeric value in single quotes. * For more information on the SQL statement, see SQLITE SQL documents. - * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 16KB size. + * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 16KB size. */ result Update(const Tizen::Base::String& dataId, const Tizen::Base::Collection::IMap& updateMap, const Tizen::Base::String* pWhere, RequestId& reqId); @@ -265,14 +265,14 @@ public: * @exception E_ILLEGAL_ACCESS Either of the following conditions has occurred: @n * - Access is denied due to insufficient permission. * - The application using this method is not signed with the same certificate of provider application. @b Since: @b 2.1 - * @exception E_MAX_EXCEEDED Either of the following conditions has occurred: @n + * @exception E_MAX_EXCEEDED Either of the following conditions has occurred: * - The size of sending buffer has exceeded the maximum limit. * - The number of sending requests has exceeded the maximum limit. * @exception E_SYSTEM A system error has occurred. * @remarks If the value specified in the @c pWhere is string, the value must be wrapped in * single quotes. Otherwise it is not needed to wrap the numeric value in single quotes. * For more information on the SQL statement, see SQLITE SQL documents. - * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 16KB size. + * @remarks The recommended data size is under 16KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 16KB size. */ result Delete(const Tizen::Base::String& dataId, const Tizen::Base::String* pWhere, RequestId& reqId); diff --git a/inc/FIoDataRow.h b/inc/FIoDataRow.h index d3b37fa..c16b0af 100755 --- a/inc/FIoDataRow.h +++ b/inc/FIoDataRow.h @@ -58,7 +58,7 @@ public: virtual ~DataRow(void); /** - * Sets a @c ByteBuffer value to the column whose index is specified. + * Sets a Tizen::Base::ByteBuffer value to the column whose index is specified. * * @since 2.1 * @@ -66,11 +66,11 @@ public: * @param[in] columnIndex The index of the column whose value is set @n * The column index starts from 0. * @param[in] pValue The value to set @n - * The specified @c pValue is pointer to user-provided @c ByteBuffer type buffer. + * The specified @c pValue is a pointer to user-provided Tizen::Base::ByteBuffer type buffer. * @exception E_SUCCESS The method is successful. * @exception E_INVALID_ARG Either of the following conditions has occurred: @n * - The specified @c columnIndex is out of range. - * - The specified @c pValue is null. + * - The specified @c pValue is @c null. * @exception E_TYPE_MISMATCH The operation has attempted to access columns of different types. * @remarks This method performs a shallow copy. It copies only the pointer; not the element itself. @n * The platform will take the ownership of @c pValue after calling this method. @@ -79,7 +79,7 @@ public: /** - * Sets a @c DateTime value to the column whose index is specified. + * Sets a Tizen::Base::DateTime value to the column whose index is specified. * * @since 2.1 * @@ -140,7 +140,7 @@ public: result SetInt64At(int columnIndex, long long value); /** - * Sets a @c String value to the column whose index is specified. + * Sets a Tizen::Base::String value to the column whose index is specified. * * @since 2.1 * diff --git a/inc/FIoDataSet.h b/inc/FIoDataSet.h index 2edbd79..07c5d09 100755 --- a/inc/FIoDataSet.h +++ b/inc/FIoDataSet.h @@ -69,7 +69,7 @@ public: * @since 2.1 * * @return An error code - * @param[in] columnNames The list of column name to create @n + * @param[in] columnNames The list of column names to create @n * The object type in the specified list should be String. * @exception E_SUCCESS The method is successful. * @exception E_INVALID_ARG The specified @c columnNames has no element. @@ -84,14 +84,14 @@ public: * @return A pointer to the DataRow instance, @n * else @c null if the memory is insufficient * @remarks The column type is decided by the type of each element inserted in first row. - * If a specific column element on the first row is not inserted, then the column's type is DB_COLUMNTYPE_NULL - * On that case, when a new column element is added later, + * If a specific column element on the first row is not inserted, then the column's type is @c DB_COLUMNTYPE_NULL + * In that case, when a new column element is added later, * then the column's type will be changed according to the new element. */ DataRow* CreateDataRowN(void); /** - * Gets table enumerator. + * Gets a table enumerator. * * @since 2.1 * @@ -102,32 +102,31 @@ public: /** - * Get copy of this instance. + * Gets a copy of this instance. * * @since 2.1 * - * @return A pointer to the copy of the DataSet instance, @n - + * @return A pointer to the copy of the %DataSet instance, @n * else @c null if the memory is insufficient */ DataSet* CloneN(void) const; /** - * Checks whether the value of the specified instance of Object is equal to the value of the current instance of + * Checks whether the value of a specified instance of Tizen::Base::Object is equal to the value of a current instance of * %DataSet. * * @since 2.1 * - * @return @c true if the value of the specified instance of Object is equal to the value of the current + * @return @c true if the value of the specified instance of Tizen::Base::Object is equal to the value of the current * instance of %DataSet, @n * else @c false - * @param[in] obj An instance of Object to compare - * @remarks The method returns @c false if the specified @c obj is not a %DataSet instance. + * @param[in] obj An instance of Tizen::Base::Object to compare + * @remarks This method returns @c false if the specified @c obj is not a %DataSet instance. */ virtual bool Equals(const Tizen::Base::Object& obj) const; /** - * Gets the hash value of the current instance. + * Gets the hash value of a current instance. * * @since 2.1 * diff --git a/inc/FIoDataSetEnumerator.h b/inc/FIoDataSetEnumerator.h index 2b80057..f01c8c4 100755 --- a/inc/FIoDataSetEnumerator.h +++ b/inc/FIoDataSetEnumerator.h @@ -81,8 +81,8 @@ public: * - An unexpected device failure has occurred as the media ejected suddenly. @n * - %File corruption is detected. * @exception E_SYSTEM The method cannot proceed due to a severe system error. - * @remarks After getting this DataSetEnumerator instance, - * if MoveNext() is called at first, the cursor goes to the first position. + * @remarks After getting this %DataSetEnumerator instance, + * if this method is called first, the cursor goes to the first position. * @see Tizen::Io::DataSetEnumerator::MovePrevious() * @see Tizen::Io::DataSetEnumerator::MoveFirst() * @see Tizen::Io::DataSetEnumerator::MoveLast() @@ -211,13 +211,13 @@ public: virtual result GetDoubleAt(int columnIndex, double& value) const; /** - * Gets a @c String value from the column whose index is specified. + * Gets a Tizen::Base::String value from the column whose index is specified. * * @since 2.1 * * @return An error code * @param[in] columnIndex The index of the column whose value is required - * @param[in,out] value The String value obtained from the specified column + * @param[in,out] value The Tizen::Base::String value obtained from the specified column * @exception E_SUCCESS The method is successful. * @exception E_INVALID_STATE The DataSet instance associated with this instance is deleted. * @exception E_INVALID_ARG The specified @c columnIndex is out of range. @@ -227,22 +227,21 @@ public: virtual result GetStringAt(int columnIndex, Tizen::Base::String& value) const; /** - * Gets a @c ByteBuffer value from the column whose index is specified. + * Gets a Tizen::Base::ByteBuffer value from the column whose index is specified. * * @since 2.1 * * @return An error code * @param[in] columnIndex The index of the column whose value is required - * @param[in,out] value The ByteBuffer value obtained from the specified column @n - * The ByteBuffer will be filled from the current position and data copy - * will be continued until ByteBuffer limitation is reached or no more - * blob data remains. @n + * @param[in,out] value The Tizen::Base::ByteBuffer value obtained from the specified column @n + * The %Tizen::Base::ByteBuffer will be filled from the current position and data copy + * will be continued until %Tizen::Base::ByteBuffer limitation is reached or no more + * blob data remains. * @exception E_SUCCESS The method is successful. * @exception E_INVALID_STATE The DataSet instance associated with this instance is deleted. - * @exception E_INVALID_ARG The specified @c columnIndex is out of range. * @exception E_TYPE_MISMATCH The operation has attempted to access columns of different types. - * @exception E_OVERFLOW The specified ByteBuffer @c value is insufficient to save the data. + * @exception E_OVERFLOW The specified Tizen::Base::ByteBuffer @c value is insufficient to save the data. * @see Tizen::Base::ByteBuffer */ virtual result GetBlobAt(int columnIndex, Tizen::Base::ByteBuffer& value) const; @@ -254,24 +253,24 @@ public: * * @return An error code * @param[in] columnIndex The index of the column whose value is required - * @param[in,out] buffer The user-provided buffer used to receive the blob data @n + * @param[in,out] buffer The user-provided buffer used to receive the blob data * @param[in] size The maximum buffer length in bytes * @exception E_SUCCESS The method is successful. * @exception E_INVALID_STATE The DataSet instance associated with this instance is deleted. - * @exception E_INVALID_ARG The specified @c columnIndex is out of range, or the specified @c size is invalid. + * @exception E_INVALID_ARG Either the specified @c columnIndex is out of range or the specified @c size is invalid. * @exception E_TYPE_MISMATCH The operation has attempted to access columns of different types. * @exception E_OVERFLOW The specified @c buffer is insufficient to save the data. */ virtual result GetBlobAt(int columnIndex, void* buffer, int size) const; /** - * Gets a @c DateTime value from the column whose index is specified. + * Gets a Tizen::Base::DateTime value from the column whose index is specified. * * @since 2.1 * * @return An error code * @param[in] columnIndex The index of the column whose value is required - * @param[in,out] value The DateTime value obtained from the specified column + * @param[in,out] value The Tizen::Base::DateTime value obtained from the specified column * @exception E_SUCCESS The method is successful. * @exception E_INVALID_STATE The DataSet instance associated with this instance is deleted. * @exception E_INVALID_ARG The specified @c columnIndex is out of range. @@ -292,30 +291,30 @@ public: * else @c -1 if an exception occurs * @exception E_SUCCESS The method is successful. * @exception E_INVALID_STATE The DataSet instance associated with this instance is deleted. - * @remarks The method must be called after MoveNext(), MoveFirst(), or MoveLast(). @n + * @remarks This method must be called after MoveNext(), MoveFirst(), or MoveLast(). @n * The specific error code can be accessed using the GetLastResult() method. */ virtual int GetColumnCount(void) const; /** - * Gets the type of the column indicated by the specified index. + * Gets the type of the column indicated by a specified index. * * @since 2.1 * * @return The type of column, @n - * else DB_COLUMNTYPE_UNDEFINED if an exception occurs + * else @c DB_COLUMNTYPE_UNDEFINED if an exception occurs * @param[in] columnIndex The index of the destination column * @exception E_SUCCESS The method is successful. * @exception E_INVALID_STATE The DataSet instance associated with this instance is deleted. * @exception E_INVALID_ARG The specified @c columnIndex is out of range. - * @remarks The method must be called after MoveNext(), MoveFirst(), or MoveLast(). @n - * Currently, DB_COLUMNTYPE_INT is returned for a 64-bit integer. @n + * @remarks This method must be called after MoveNext(), MoveFirst(), or MoveLast(). @n + * Currently, @c DB_COLUMNTYPE_INT is returned for a 64-bit integer. @n * The specific error code can be accessed using the GetLastResult() method. */ virtual DbColumnType GetColumnType(int columnIndex) const; /** - * Gets the name of the column indicated by the specified index. + * Gets the name of the column indicated by a specified index. * * @since 2.1 * @@ -326,7 +325,7 @@ public: * @exception E_INVALID_STATE The DataSet instance associated with this instance is deleted. * @exception E_INVALID_ARG The specified @c columnIndex is out of range. * @exception E_INVALID_ENCODING_RANGE The string conversion has failed due to invalid encoding range. - * @remarks The method must be called after MoveNext(), MoveFirst(), or MoveLast(). @n + * @remarks This method must be called after MoveNext(), MoveFirst(), or MoveLast(). @n * The specific error code can be accessed using the GetLastResult() method. */ virtual Tizen::Base::String GetColumnName(int columnIndex) const; @@ -342,7 +341,7 @@ public: * @exception E_SUCCESS The method is successful. * @exception E_INVALID_STATE The DataSet instance associated with this instance is deleted. * @exception E_INVALID_ARG The specified @c columnIndex is out of range. - * @remarks The method must be called after MoveNext(), MoveFirst(), or MoveLast(). @n + * @remarks This method must be called after MoveNext(), MoveFirst(), or MoveLast(). @n * If the destination column is of type String, this method returns the @c byte length excluding * the @c null terminator character. @n * The specific error code can be accessed using the GetLastResult() method. diff --git a/inc/FIoDirEntry.h b/inc/FIoDirEntry.h index 11d94fd..4069b3e 100644 --- a/inc/FIoDirEntry.h +++ b/inc/FIoDirEntry.h @@ -250,11 +250,11 @@ public: bool IsReadOnly(void) const; /** - * Gets the date and time of last modification of the directory entry. + * Gets the date and time of the last modification of the directory entry. * * @since 2.0 * - * @return The date and time of last modification + * @return The date and time of the last modification */ Tizen::Base::DateTime GetDateTime(void) const; diff --git a/inc/FIoMessagePortManager.h b/inc/FIoMessagePortManager.h index 182a617..03c28cd 100644 --- a/inc/FIoMessagePortManager.h +++ b/inc/FIoMessagePortManager.h @@ -65,7 +65,7 @@ public: * @exception E_SUCCESS The method is successful. * @exception E_INVALID_ARG The @c localMessagePortName is empty. * @exception E_SYSTEM The method has failed due to a severe system error. - * @remarks It is not recommended to use the message port names which start with "http://tizen.org/messageport". E_INVALID_ARG may be returned because they are reserved by platform. + * @remarks It is not recommended to use the message port names that start with "http://tizen.org/messageport". @c E_INVALID_ARG may be returned because they are reserved by platform. * @remarks The specific error code can be accessed using the GetLastResult() method. */ static LocalMessagePort* RequestLocalMessagePort(const Tizen::Base::String& localMessagePortName); @@ -101,7 +101,7 @@ public: * @exception E_SUCCESS The method is successful. * @exception E_INVALID_ARG The @c localMessagePortName is empty. * @exception E_SYSTEM The method has failed due to a severe system error. - * @remarks It is not recommended to use the message port names which start with "http://tizen.org/messageport". E_INVALID_ARG may be returned because they are reserved by platform. + * @remarks It is not recommended to use the message port names that start with "http://tizen.org/messageport". @c E_INVALID_ARG may be returned because they are reserved by platform. * @remarks The specific error code can be accessed using the GetLastResult() method. */ static LocalMessagePort* RequestTrustedLocalMessagePort(const Tizen::Base::String& localMessagePortName); diff --git a/inc/FIoRemoteMessagePort.h b/inc/FIoRemoteMessagePort.h index 8096273..ebbff6b 100644 --- a/inc/FIoRemoteMessagePort.h +++ b/inc/FIoRemoteMessagePort.h @@ -153,7 +153,7 @@ public: * @exception E_OBJ_NOT_FOUND The message port of the target application is not found. * @exception E_MAX_EXCEEDED The size of @c pMessage has exceeded the maximum limit. * @exception E_SYSTEM The method has failed due to a severe system error. - * @remarks The recommended message size is under 4KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 4KB size. + * @remarks The recommended message size is under 4KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 4KB size. */ result SendMessage(const Tizen::Base::Collection::IMap* pMessage); @@ -174,7 +174,7 @@ public: * @exception E_OBJ_NOT_FOUND The message port of the target application is not found. * @exception E_MAX_EXCEEDED The size of @c pMessage has exceeded the maximum limit. * @exception E_SYSTEM The method has failed due to a severe system error. - * @remarks The recommended message size is under 4KB because severe system performance degradation may occur for large messages. E_MAX_EXCEEDED may be returned for messages over 4KB size. + * @remarks The recommended message size is under 4KB because severe system performance degradation may occur for large messages. @c E_MAX_EXCEEDED may be returned for messages over 4KB size. */ result SendMessage(const LocalMessagePort* pLocalMessagePort, const Tizen::Base::Collection::IMap* pMessage); -- 2.7.4