Fix PLM P130828-03861 for system time zone.
[platform/framework/native/appfw.git] / inc / FBaseColIList.h
index 3736489..21811c1 100644 (file)
@@ -33,8 +33,8 @@ namespace Tizen { namespace Base { namespace Collection
 {
 
 /**
- * @interface IList
- * @brief      This interface represents a collection of objects that can be individually accessed by an index.
+ * @interface  IList
+ * @brief              This interface represents a collection of objects that can be individually accessed by an index.
  *
  * @since 2.0
  *
@@ -63,7 +63,7 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   obj             The object to add
+        * @param[in]   obj                             The object to add
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_OUT_OF_MEMORY The memory is insufficient.
         * @remarks             In a collection of contiguous elements, such as a list, the elements
@@ -86,8 +86,8 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   pObj            The pointer to object to add
-        * @exception   E_SUCCESS               The method is successful.
+        * @param[in]   pObj                            The pointer to object to add
+        * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_ARG           The specified input parameter is invalid.
         * @remarks             In a collection of contiguous elements, such as a list, the elements
         *                              that follow the insertion point move down to accommodate the new element.
@@ -105,7 +105,7 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   collection The collection to add to the list
+        * @param[in]   collection                      The collection to add to the list
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_OPERATION     The current state of the instance prohibits the execution of the specified operation, or
         *                                                                      the specified @c collection is modified during the operation of this method.
@@ -145,7 +145,7 @@ public:
         *                                                                              the @c index is greater than the number of elements in the list or less than @c 0.
         * @remarks             If the @c index equals the number of elements in the list, the new element
         *                              is added at the end of the list.
-        *                      This method performs a shallow copy. It inserts the pointer only; not the element itself.
+        *                              This method performs a shallow copy. It inserts the pointer only; not the element itself.
         * @see                 Add(Object*)
         * @see                 RemoveAt()
         * @endif
@@ -161,7 +161,7 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   pObj            The pointer to object to insert
+        * @param[in]   pObj    The pointer to object to insert
         * @param[in]   index   The index at which the object must be inserted
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_ARG           The specified input parameter is invalid.
@@ -275,7 +275,7 @@ public:
         *
         * @return              The object at the specified location, @n
         *                              else @c null if the @c index is not valid
-        * @param[in]   index   The index of the object to get
+        * @param[in]   index                                   The index of the object to get
         * @exception   E_SUCCESS                               The method is successful.
         * @exception   E_OUT_OF_RANGE                  The specified index is outside the bounds of the data structure, or
         *                                                                              the specified @c index is either equal to or greater than the number of elements in the list or less than @c 0.
@@ -300,7 +300,7 @@ public:
         *                                                                              - The @c count is greater than the number of elements in the list starting from @c startIndex
         *                                                                              or less than @c 0.
         * @remarks             The %IList stores just the pointers to the elements in the list, not the elements themselves.
-        *              The specific error code can be accessed using the GetLastResult() method.
+        *                              The specific error code can be accessed using the GetLastResult() method.
         */
        virtual IList* GetItemsN(int startIndex, int count) const = 0;
 
@@ -360,7 +360,7 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   obj                     The object to remove
+        * @param[in]   obj                                     The object to remove
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_OBJ_NOT_FOUND         The specified @c obj is not found.
         * @see                 Add(Object*)
@@ -374,7 +374,7 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   index The index at which the object must be removed
+        * @param[in]   index                           The index at which the object must be removed
         * @param[in]   forceDeletion           Set to @c true to deallocate the object, @n
         *                                                                      else @c false
         * @exception   E_SUCCESS                               The method is successful.
@@ -423,7 +423,7 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   index The index at which the object must be removed
+        * @param[in]   index                                   The index at which the object must be removed
         * @exception   E_SUCCESS                               The method is successful.
         * @exception   E_OUT_OF_RANGE                  The specified index is outside the bounds of the data structure, or
         *                                                                              the specified @c index is either equal to or greater than the number of elements in the list or less than @c 0.
@@ -577,7 +577,7 @@ public:
         *
         * @return              An error code
         * @param[in]   forceDeletion           Set to @c true to deallocate all the objects, @n
-        *                                                      else @c false
+        *                                                                      else @c false
         * @remarks
         *                              - Based on the specified element deleter, the remove operation not only gets rid of an element from a list, but also deletes its object instance. @n
         *                              The element deleter style is recommended rather than using the @c forceDeletetion argument in the remove method. @n
@@ -695,7 +695,7 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   comparer        The IComparer implementation to use when comparing elements
+        * @param[in]   comparer                The IComparer implementation to use when comparing elements
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_INVALID_ARG   The specified input parameter is invalid.
         */
@@ -747,7 +747,7 @@ public:
         *
         * @return              @c true if the list contains all the elements of the specified collection, @n
         *                                      else @c false
-        * @param[in]   collection      The collection to check for containment in this list
+        * @param[in]   collection                      The collection to check for containment in this list
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_OPERATION     The current state of the instance prohibits the execution of the specified operation, or
         *                                                                      the specified @c collection is modified during the operation of this method.
@@ -763,12 +763,12 @@ public:
        *
        * @since 2.0
        *
-       * @return        A pointer to a bidirectional enumerator interface of the %IList derived class, @n
-       *                              else @c null if an exception occurs
-       * @remarks      Use this method to obtain a bidirectional enumerator (an instance of the IBidirectionalEnumerator derived class)
-       *                              to iterate over a collection (an instance of the %IList derived class).
-       *                   The specific error code can be accessed using GetLastResult() method.
-       * @see           Tizen::Base::Collection::IBidirectionalEnumerator
+       * @return               A pointer to a bidirectional enumerator interface of the %IList derived class, @n
+       *                               else @c null if an exception occurs
+       * @remarks              Use this method to obtain a bidirectional enumerator (an instance of the IBidirectionalEnumerator derived class)
+       *                               to iterate over a collection (an instance of the %IList derived class).
+       *                               The specific error code can be accessed using GetLastResult() method.
+       * @see                  Tizen::Base::Collection::IBidirectionalEnumerator
        */
        virtual IBidirectionalEnumerator* GetBidirectionalEnumeratorN(void) const = 0;