X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseColICollection.h;h=058754f27a73ebf7526ecf0a02bd36b3519ab27d;hb=20597a73bc3098301ba91a48378f3ef009c3be96;hp=e3cac907a5de4a921d537ee760c797287fca48bd;hpb=1d2dc38595600c1a3f1cd91c89e7fee509bc4b97;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseColICollection.h b/inc/FBaseColICollection.h index e3cac90..058754f 100644 --- a/inc/FBaseColICollection.h +++ b/inc/FBaseColICollection.h @@ -42,11 +42,11 @@ namespace Tizen { namespace Base { namespace Collection /** * @interface ICollection * @brief This interface represents a collection of objects. @n - * It defines the size, enumerators, and the synchronization mechanism of a collection. + * It defines the size, the enumerators, and the synchronization mechanism of a collection. * * @since 2.0 * - * The %ICollection interface represents a collection of objects. It defines the size, enumerators, and the synchronization mechanism of a collection. + * The %ICollection interface represents a collection of objects. It defines the size, the enumerators, and the synchronization mechanism of a collection. * */ class _OSP_EXPORT_ ICollection @@ -65,24 +65,24 @@ public: * * @since 2.0 * - * @return An integer value indicating the number of objects currently stored in the collection + * @return The integer value that indicates the number of objects currently stored in the collection */ virtual int GetCount(void) const = 0; /** * Gets the enumerator of the %ICollection derived class, - * or returns @c null if some exception occurs. + * or returns @c null if an exception occurs. * * @since 2.0 * - * @return A pointer to an enumerator interface of the %ICollection derived class, @n + * @return A pointer to the enumerator interface of the %ICollection 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 IEnumerator derived class) + * @remarks + * - Use this method to obtain an enumerator (an instance of the IEnumerator derived class) * to iterate over a collection (an instance of the %ICollection derived class). - * @remarks The specific error code can be accessed using GetLastResult() method. - * @see Tizen::Base::Collection::IEnumerator + * - The specific error code can be accessed using GetLastResult() method. * */ virtual IEnumerator* GetEnumeratorN(void) const = 0;