Add tag and document to Tizen.NUI.
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / Container.cs
index b0632c2..6a8f5d8 100755 (executable)
@@ -25,7 +25,6 @@ namespace Tizen.NUI
     /// added to them.
     ///
     /// </summary>
-
     public abstract class Container : Animatable
     {
 
@@ -52,6 +51,7 @@ namespace Tizen.NUI
         /// <post>The child will be referenced by its parent. This means that the child will be kept alive, even if the handle passed into this method is reset or destroyed.</post>
         /// <remarks>If the child already has a parent, it will be removed from the old parent and reparented to this view. This may change child's position, color, scale, etc. as it now inherits them from this view.</remarks>
         /// <param name="view">The child view to add.</param>
+        /// <since_tizen> 4 </since_tizen>
         public abstract void Add( View view );
 
         /// <summary>
@@ -59,6 +59,7 @@ namespace Tizen.NUI
         /// </summary>
         /// <pre>This View(the parent) has been initialized. The child view is not the same as the parent view.</pre>
         /// <param name="view">The view to remove</param>
+        /// <since_tizen> 4 </since_tizen>
         public abstract void Remove( View view );
 
         /// <summary>
@@ -67,6 +68,7 @@ namespace Tizen.NUI
         /// <pre>The view has been initialized.</pre>
         /// <param name="index">The index of the child to retrieve.</param>
         /// <returns>The view for the given index or empty handle if children are not initialized.</returns>
+        /// <since_tizen> 4 </since_tizen>
         public abstract View GetChildAt( uint index );
 
         /// <summary>
@@ -89,6 +91,7 @@ namespace Tizen.NUI
         /// </summary>
         /// <pre>The child container has been initialized.</pre>
         /// <returns>The parent container.</returns>
+        /// <since_tizen> 4 </since_tizen>
         public Container Parent
         {
             get
@@ -103,6 +106,7 @@ namespace Tizen.NUI
         /// </summary>
         /// <pre>The container has been initialized.</pre>
         /// <returns>The number of children.</returns>
+        /// <since_tizen> 4 </since_tizen>
         public uint ChildCount
         {
             get
@@ -111,4 +115,4 @@ namespace Tizen.NUI
             }
         }
     }
-} // namespace Tizen.NUI
+} // namespace Tizen.NUI
\ No newline at end of file