X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseColICollectionT.h;h=d0b5d2114945983c2f719a3ac94b6195bd5e59aa;hb=67968df1190dbbb5530d1827ec10c2e9f263f09d;hp=1021fad4a8bc52f3841f151a8423aac5949c8d89;hpb=27f1388665067f69d5eb64e0cae6bb5f4250beec;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseColICollectionT.h b/inc/FBaseColICollectionT.h index 1021fad..d0b5d21 100644 --- a/inc/FBaseColICollectionT.h +++ b/inc/FBaseColICollectionT.h @@ -33,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 @@ -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) + * @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;