[2.2.1] Apply reviewed header file (Base to Collection)
[platform/framework/native/appfw.git] / inc / FBaseColICollectionT.h
index 859d4bd..d0b5d21 100644 (file)
@@ -35,12 +35,12 @@ namespace Tizen { namespace Base { namespace Collection
 /**
  * @interface  ICollectionT
  * @brief              This interface represents a template-based collection of objects.
- *                             It defines the size, and enumerators.
+ *                             It defines the size, and the enumerators.
  *
  * @since 2.0
  *
  * The %ICollectionT interface represents a template-based collection of objects.
- * It defines the size, and enumerators.
+ * It defines the size, and the enumerators.
  */
 template< class Type >
 class ICollectionT
@@ -69,14 +69,14 @@ public:
         *
         * @since 2.0
         *
-        * @return              A pointer to an enumerator interface of the %ICollectionT derived class, @n
+        * @return              A pointer to the enumerator interface of the %ICollectionT derived class, @n
         *                              else @c null if an exception occurs
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_OUT_OF_MEMORY         The memory is insufficient.
-        * @remarks             Use this method to obtain an enumerator (an instance of the IEnumeratorT derived class)
+        * @remarks
+        *                              - Use this method to obtain the enumerator (an instance of the IEnumeratorT derived class)
         *                              to iterate over a collection (an instance of the %ICollectionT derived class).
-        * @remarks             The specific error code can be accessed using the GetLastResult() method.
-        * @see                 Tizen::Base::Collection::IEnumerator
+        *                              - The specific error code can be accessed using the GetLastResult() method.
         */
        virtual IEnumeratorT< Type >* GetEnumeratorN(void) const = 0;