X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseColICollectionT.h;h=d0b5d2114945983c2f719a3ac94b6195bd5e59aa;hb=f6fe22fddce04f1e48556cc2e3219b292117d91f;hp=e0a0a97c4575c632e29bf0dfd7f78b59ab95b659;hpb=6b44196c40a66b895028f7ba2e9b5e41bc715ab2;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseColICollectionT.h b/inc/FBaseColICollectionT.h index e0a0a97..d0b5d21 100644 --- a/inc/FBaseColICollectionT.h +++ b/inc/FBaseColICollectionT.h @@ -1,5 +1,4 @@ // -// Open Service Platform // Copyright (c) 2012 Samsung Electronics Co., Ltd. // // Licensed under the Apache License, Version 2.0 (the License); @@ -34,14 +33,14 @@ namespace Tizen { namespace Base { namespace Collection { /** - * @interface ICollectionT - * @brief This interface represents a template-based collection of objects. - * It defines the size, and enumerators. + * @interface ICollectionT + * @brief This interface represents a template-based collection of objects. + * 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 @@ -70,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) + * @exception E_OUT_OF_MEMORY The memory is insufficient. + * @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;