Merge "Apply new string localization for Web control" into tizen_2.2
[platform/framework/native/appfw.git] / inc / FBaseColStackT.h
index 35cdc66..fe62e83 100644 (file)
@@ -28,7 +28,6 @@
 #include <FBaseResult.h>
 #include <FBaseColICollectionT.h>
 
-
 namespace Tizen { namespace Base { namespace Collection
 {
 
@@ -116,7 +115,7 @@ public:
         *                              The default capacity is @c 10.
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_INVALID_ARG   The specified input parameter is invalid, or
-        *                                                                the specified @c capacity is negative.
+        *                                                              the specified @c capacity is negative.
         */
        result Construct(int capacity = DEFAULT_CAPACITY)
        {
@@ -139,7 +138,7 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   collection The collection to copy elements from
+        * @param[in]   collection                      The collection to copy elements from
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_OPERATION     The current state of the instance prohibits the execution of the specified operation, or
         *                                                                      the specified @c collection is modified during the operation of this method.
@@ -203,7 +202,7 @@ CATCH:
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_OUT_OF_MEMORY The memory is insufficient.
         * @remarks             The specific error code can be accessed using the GetLastResult() method.
-        * @see                         Tizen::Base::Collection::IEnumeratorT
+        * @see                 Tizen::Base::Collection::IEnumeratorT
         */
        virtual IEnumeratorT< Type >* GetEnumeratorN(void) const
        {
@@ -227,7 +226,7 @@ CATCH:
         * @since 2.0
         *
         * @return              An error code
-        * @param[out]  obj The element at the beginning of this stack
+        * @param[out]  obj                     The element at the beginning of this stack
         * @exception   E_SUCCESS       The method is successful.
         * @exception   E_UNDERFLOW     The operation (arithmetic/casting/conversion) has caused an underflow, or
         *                                                      this stack is empty.
@@ -250,7 +249,7 @@ CATCH:
         * @since 2.0
         *
         * @return              An error code
-        * @param[out]  obj The element at the beginning of this stack
+        * @param[out]  obj                     The element at the beginning of this stack
         * @exception   E_SUCCESS       The method is successful.
         * @exception   E_UNDERFLOW     The operation (arithmetic/casting/conversion) has caused an underflow, or
         *                                                      this stack is empty.
@@ -278,10 +277,10 @@ CATCH:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   obj The object to add to this stack
+        * @param[in]   obj                             The object to add to this stack
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_OUT_OF_MEMORY The memory is insufficient.
-        * @see                         Pop()
+        * @see                 Pop()
         */
        virtual result Push(const Type& obj)
        {
@@ -383,8 +382,8 @@ CATCH:
         *
         * @return              An error code
         * @param[in]   collection      The collection to locate
-        * @param[out]  out   Set to @c true if this stack contains all of the elements in the specified @c collection, @n
-        *                                       else @c false
+        * @param[out]  out             Set to @c true if this stack contains all of the elements in the specified @c collection, @n
+        *                                                      else @c false
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_OPERATION     The current state of the instance prohibits the execution of the specified operation, or
         *                                                                      the specified @c collection is modified during the operation of this method.
@@ -569,13 +568,13 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[out]  obj The current object
-        * @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
-        *                                                                       - This enumerator is currently positioned before the first element or
-        *                                                                      past the last element. @n
-        *                                                                      - The stack is modified after this enumerator is created.
-        * @exception   E_SUCCESS                       The method is successful.
+        * @param[out]  obj                                             The current object
+        * @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
+        *                                                                              - This enumerator is currently positioned before the first element or
+        *                                                                              past the last element. @n
+        *                                                                              - The stack is modified after this enumerator is created.
+        * @exception   E_SUCCESS                               The method is successful.
         */
        result GetCurrent(Type& obj) const
        {
@@ -601,7 +600,7 @@ public:
         * @exception   E_INVALID_OPERATION     The current state of the instance prohibits the execution of the specified operation, or
         *                                                                      the stack is modified after this enumerator is created.
         * @exception   E_OUT_OF_RANGE          The enumerator has passed the end of the stack.
-        * @see                         Reset()
+        * @see                 Reset()
         */
        result MoveNext(void)
        {