Update doxygen
authorHyunbin Lee <hyunbin.lee@samsung.com>
Mon, 1 Apr 2013 10:09:31 +0000 (19:09 +0900)
committerHyunbin Lee <hyunbin.lee@samsung.com>
Mon, 1 Apr 2013 10:10:43 +0000 (19:10 +0900)
Change-Id: I1782167f5b0eb7f1de03c56fd17a3996d10cca39
Signed-off-by: Hyunbin Lee <hyunbin.lee@samsung.com>
13 files changed:
inc/FIo.h
inc/FIoChannelTypes.h
inc/FIoDbEnumerator.h
inc/FIoDbTypes.h
inc/FIoDirEnumerator.h
inc/FIoFileAttributes.h
inc/FIoFileLock.h
inc/FIoIChannelRequestEventListener.h
inc/FIoIChannelResponseEventListener.h
inc/FIoIDbEnumerator.h
inc/FIoIFileEventListener.h
inc/FIoRemoteMessagePort.h
inc/FIoSqlStatementBuilder.h

index d5babaa..7a79473 100644 (file)
--- a/inc/FIo.h
+++ b/inc/FIo.h
@@ -17,9 +17,9 @@
 
 /**
  * @file       FIo.h
- * @brief      This is the header file for the Tizen::Io namespace.
+ * @brief      This is the header file for the %Io namespace.
  *
- * This header file contains the declarations of the Tizen::Io namespace.
+ * This header file contains the declarations of the %Io namespace.
  */
 
 #ifndef _FIO_H_
index 2fe5bac..d618536 100644 (file)
@@ -16,9 +16,9 @@
 //
 /**
  * @file               FIoChannelTypes.h
- * @brief              This is the header file for the %ChannelType class.
+ * @brief              This is the header file for the %ChannelType enumerator.
  *
- * This header file contains the enumerator declarations of the %ChannelType class.
+ * This header file contains the declarations of the %ChannelType enumerator.
  */
 #ifndef _FIO_CHANNEL_TYPES_H_
 #define _FIO_CHANNEL_TYPES_H_
index 613610b..d09e079 100644 (file)
@@ -386,7 +386,7 @@ public:
        *                                                                         (the query did not yield any result). @n
        *                                                                       - The Database or DbStatement 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
        *                               Currently, DB_COLUMNTYPE_INT is returned for a 64-bit integer. @n
        *                               The specific error code can be accessed using the GetLastResult() method.
        */
@@ -409,7 +409,7 @@ public:
        * @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, or
        *                                                                                       it is possible if the database file is corrupted.
-       * @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;
@@ -429,7 +429,7 @@ public:
        *                                                                         (the query did not yield any result). @n
        *                                                                       - The Database or DbStatement 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.
        */
index b601764..6075cb9 100644 (file)
@@ -17,9 +17,9 @@
 
 /**
  * @file       FIoDbTypes.h
- * @brief      This is the header file for the %DbTypes class.
+ * @brief      This is the header file for the %DbColumnType enumerator.
  *
- * This header file contains enum declarations of the @e %DbTypes class.
+ * This header file contains the declarations of the %DbColumnType enumerator.
  */
 
 #ifndef _FIO_DB_TYPES_H_
@@ -35,7 +35,7 @@ namespace Tizen { namespace Io
 /**
  * @enum       DbColumnType
  *
- * Defines     types of column.
+ * Defines the column types.
  *
  * @since      2.0
  */
@@ -46,7 +46,7 @@ enum DbColumnType
        DB_COLUMNTYPE_DOUBLE,   /**< The column type is double */
        DB_COLUMNTYPE_TEXT,     /**< The column type is text */
        DB_COLUMNTYPE_BLOB,     /**< The column type is blob */
-       DB_COLUMNTYPE_NULL,     /**< The column type is null */
+       DB_COLUMNTYPE_NULL,     /**< The column type is @c null */
        DB_COLUMNTYPE_UNDEFINED
 };
 
index 2121387..759429a 100644 (file)
@@ -160,7 +160,7 @@ public:
        * @exception        E_INVALID_ARG               Either of the following conditions has occurred: @n
        *                                                                               - The length of the specified path is @c 0 or exceeds
        *                                                                                 system limitations. @n
-       *                                                                               - The specified path is invalid.@n
+       *                                                                               - The specified path is invalid. @n
        *                                                                               - The file handle is invalid (either the file is closed by
        *                                                                                 another method, or the memory is corrupted).
        * @exception        E_FILE_NOT_FOUND    An entry for the specified file or path cannot be found.
index a14ea97..45c1b0c 100644 (file)
@@ -218,12 +218,11 @@ public:
        bool IsReadOnly(void) const;
 
        /**
-       * Gets the date and time of the file creation or last modification.
+       * Gets the date and time of the last modification to the file.
        *
        * @since                2.0
        *
-       * @return               The date and time of the file creation or last modification
-       * @remarks              If the created file is modified, its date and time is updated.
+       * @return               The date and time of the last modification to the file
        */
        Tizen::Base::DateTime GetDateTime(void) const;
 
index 78467e1..37f47e4 100644 (file)
@@ -30,16 +30,16 @@ namespace Tizen { namespace Io
 /**
  * @enum FileLockType
  *
- * Defines the file lock type
+ * Defines the file lock types.
  *
  * @since      2.1
  */
 enum FileLockType
 {
-       FILE_LOCK_SHARED,               /**< More than one process can hold a shared file lock on a file region.
+       FILE_LOCK_SHARED,               /**< More than one process can hold a shared file lock on a file region @n
                                                        A shared lock prevents any other process from setting an exclusive lock on the file
-                                                       region . */
-       FILE_LOCK_EXCLUSIVE             /**< Only one process can hold an exclusive lock on a file region.
+                                                       region. */
+       FILE_LOCK_EXCLUSIVE             /**< Only one process can hold an exclusive lock on a file region @n
                                                        An exclusive lock prevents any other process from setting both shared and exclusive
                                                        lock on the file region. */
 };
@@ -63,7 +63,7 @@ class _OSP_EXPORT_ FileLock
 
 public:
        /**
-       * This destructor releases the file lock on the current opened file if acquired
+       * This destructor releases the file lock on the current opened file if acquired.
        *
        * @since          2.1
        */
@@ -91,7 +91,7 @@ public:
 
        /**
        * Checks whether the file lock is valid. @n
-       * The lock is valid unless the associated %File has been closed.
+       * The lock is valid unless the associated file has been closed.
        *
        * @since          2.1
        *
index 185bd44..8aafe10 100644 (file)
@@ -40,7 +40,7 @@ class ServerChannel;
 * @interface IChannelRequestEventListener
 * @brief    <i> [Deprecated] </i> This interface provides event handlers for any request events received through a channel.
 *
-* @deprecated  This class is deprecated. Instead of using this class, use IMessagePortListener class.
+* @deprecated  This interface is deprecated. Instead of using this interface, use the IMessagePortListener interface.
 * @since    2.0
 *
 * The %IChannelRequestEventListener interface provides event handlers to receive channel request event.
index d49c916..a8dd254 100644 (file)
@@ -39,7 +39,7 @@ class ClientChannel;
 * @interface IChannelResponseEventListener
 * @brief    <i> [Deprecated] </i> This interface provides event handlers for any response events received through a channel.
 *
-* @deprecated  This class is deprecated. Instead of using this class, use MessagePortManager class.
+* @deprecated  This class is deprecated. Instead of using this class, use the MessagePortManager class.
 * @since    2.0
 *
 *  The %IChannelResponseEventListener interface provides event handlers for receiving the channel response events.
index 5bc923e..8c42d88 100644 (file)
@@ -303,7 +303,7 @@ public:
        *                                                                       - This instance has not been properly constructed. @n
        *                                                                       - The method has tried to fetch the column data of a result set that is not activated
        *                                                                         (the query did not yield any result). @n
-       * @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 = 0;
@@ -322,7 +322,7 @@ public:
        *                                                                       - The method has tried to fetch the column data of a result set that is not activated
        *                                                                         (the query did not yield any result). @n
        * @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
        *                               Currently, DB_COLUMNTYPE_INT is returned for a 64-bit integer. @n
        *                               The specific error code can be accessed using the GetLastResult() method.
        */
@@ -344,7 +344,7 @@ public:
        * @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, or
        *                                                                                       it is possible if the database file is corrupted.
-       * @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 = 0;
@@ -363,7 +363,7 @@ public:
        *                                                                       - The method has tried to fetch the column data of a result set that is not activated
        *                                                                         (the query did not yield any result). @n
        * @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.
        */
index 44c398d..8dadb3e 100644 (file)
@@ -53,8 +53,8 @@ public:
        * @param[in]    events          The file event type @n
        *                               Multiple event type can be combined using bitwise OR (see Tizen::Io::FileEventType). @n
        *                               Tizen::Io::FILE_EVENT_TYPE_ALL is provided for all file event type.
-       * @param[in]    path            The path to the directory or file that event is occurred
-       * @param[in]    eventId         The event id associating related events for single operation such as File::Move, Directory::Rename
+       * @param[in]    path            The path to the directory or file where the event has occurred
+       * @param[in]    eventId         The event ID associating related events for single operation such as File::Move(), Directory::Rename()
        */
        virtual void OnFileEventOccured(const unsigned long events, const Tizen::Base::String& path, const unsigned int eventId) = 0;
 
index e263bdb..6ac2304 100644 (file)
@@ -169,7 +169,7 @@ public:
         *                                                                        The recommended message size is under 4KB.
         * @exception     E_SUCCESS           The method is successful.
         * @exception     E_INVALID_ARG       Either of the following conditions has occurred: @n
-        *                                                                        - The local message port is null. @n
+        *                                                                        - The local message port is @c null. @n
         *                                                                        - The message argument is not a map of key (String) and value (String or ByteBuffer) pair.
         * @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.
index f629799..5757b0b 100644 (file)
@@ -66,7 +66,7 @@ public:
        * @param[in]    pColumnList                     A list of column names to query @n
        *                                                                       The type of objects contained in the specified @c pColumnList must be
        *                                                                       Tizen::Base::String class.
-       *                                                                       If it is null, all columns are returned in result set.
+       *                                                                       If it is @c null, all columns are returned in result set.
        * @param[in]    pWhere                          A filter to select desired rows to query @n
        *                                                                       It is an SQL 'WHERE' clause excluding the 'WHERE' itself such as
        *                                                                       column1 = 'stringValue' AND column2 = numericValue.
@@ -81,8 +81,8 @@ public:
        * @exception    E_SUCCESS                       The method is successful.
        * @exception    E_INVALID_ARG           Either of the following conditions has occurred:
        *                                                                       - The specified @c pColumnList is empty.
-       *                                                                       - The specified @c pOrder is null and @c pLimit is not null.
-       *                                                                       - The specified @c pGroup is null and @c pHaving is not null.
+       *                                                                       - The specified @c pOrder is @c null and @c pLimit is not @c null.
+       *                                                                       - The specified @c pGroup is @c null and @c pHaving is not @c null.
        * @exception    E_SYSTEM                        A system error has occurred.
        * @remarks      The specific error code can be accessed using the GetLastResult() method.
        * @remarks              If the value specified in the @c pWhere is string, the value must be wrapped in
@@ -150,7 +150,7 @@ public:
        * @param[in]    pWhere                          A filter to select desired rows to delete @n
        *                                                                       It is an SQL 'WHERE' clause excluding the 'WHERE' itself such as
        *                                                                       column1 = 'stringValue' AND column2 = numericValue.
-       *                                                                       If it is null, all rows are deleted.
+       *                                                                       If it is @c null, all rows are deleted.
        * @exception    E_SUCCESS                       The method is successful.
        * @exception    E_INVALID_ARG           A specified parameter is invalid.
        * @exception    E_SYSTEM                        A system error has occurred.