X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseColIMapEnumerator.h;h=ef95d93b7190966c59883fee53c8429c412fe9fa;hb=851cb906a7b33299709f32d7371c46577e853d36;hp=92b9eeddafeb3437cf8f0c38ccfa0210bb266d85;hpb=27f1388665067f69d5eb64e0cae6bb5f4250beec;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseColIMapEnumerator.h b/inc/FBaseColIMapEnumerator.h index 92b9eed..ef95d93 100644 --- a/inc/FBaseColIMapEnumerator.h +++ b/inc/FBaseColIMapEnumerator.h @@ -26,15 +26,14 @@ #include #include - namespace Tizen { namespace Base { namespace Collection { class MapEntry; /** - * @interface IMapEnumerator - * @brief This interface supports simple iteration over a map. + * @interface IMapEnumerator + * @brief This interface supports simple iteration over a map. * * @since 2.0 * @@ -69,12 +68,11 @@ public: * @return A pointer to the current object in the collection, @n * else @c null if an exception occurs * @exception E_SUCCESS The method is successful. - * @exception E_INVALID_OPERATION Either of the following conditions has occurred: @n + * @exception E_INVALID_OPERATION Either of the following conditions has occurred: @n * - The current state of the instance prohibits the execution of the specified operation. @n * - The enumerator is currently positioned before the first element or after the last element. @n * - The collection is modified after the enumerator is created. * @remarks The specific error code can be accessed using the GetLastResult() method. - * @see GetLastResult() */ virtual Object* GetCurrent(void) const = 0; @@ -86,12 +84,11 @@ public: * @return A pointer to the current key in the map, @n * else @c null if an exception occurs * @exception E_SUCCESS The method is successful. - * @exception E_INVALID_OPERATION Either of the following conditions has occurred: @n + * @exception E_INVALID_OPERATION Either of the following conditions has occurred: @n * - The current state of the instance prohibits the execution of the specified operation. @n * - The enumerator is currently positioned before the first element or after the last element. @n * - The collection is modified after the enumerator is created. * @remarks The specific error code can be accessed using the GetLastResult() method. - * @see GetLastResult() */ virtual Object* GetKey(void) const = 0; @@ -103,12 +100,11 @@ public: * @return A pointer to the current value in the map, @n * else @c null if an exception occurs * @exception E_SUCCESS The method is successful. - * @exception E_INVALID_OPERATION Either of the following conditions has occurred: @n + * @exception E_INVALID_OPERATION Either of the following conditions has occurred: @n * - The current state of the instance prohibits the execution of the specified operation. @n * - The enumerator is currently positioned before the first element or after the last element. @n * - The collection is modified after the enumerator is created. * @remarks The specific error code can be accessed using the GetLastResult() method. - * @see GetLastResult() */ virtual Object* GetValue(void) const = 0;