[NUI] Fix build warnings: delete obsolete warnings
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / View.cs
index 1002e87..61aafa9 100755 (executable)
@@ -43,7 +43,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Adds a child view to this view.
         /// </summary>
-        /// <seealso cref="Container::Add()">
+        /// <seealso cref="Container.Add">
         /// </seealso>
         public override void Add(View child)
         {
@@ -55,7 +55,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Removes a child view from this View. If the view was not a child of this view, this is a no-op.
         /// </summary>
-        /// <seealso cref="Container::Remove()">
+        /// <seealso cref="Container.Remove">
         /// </seealso>
         public override void Remove(View child)
         {
@@ -67,7 +67,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Retrieves a child view by index.
         /// </summary>
-        /// <seealso cref="Container::GetChildAt()">
+        /// <seealso cref="Container.GetChildAt">
         /// </seealso>
         public override View GetChildAt(uint index)
         {
@@ -83,7 +83,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Retrieves the number of children held by the view.
         /// </summary>
-        /// <seealso cref="Container::GetChildCount()">
+        /// <seealso cref="Container.GetChildCount">
         /// </seealso>
         protected override uint GetChildCount()
         {
@@ -96,7 +96,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Gets the views parent.
         /// </summary>
-        /// <seealso cref="Container::GetParent()">
+        /// <seealso cref="Container.GetParent()">
         protected override Container GetParent()
         {
             Container ret;
@@ -118,7 +118,8 @@ namespace Tizen.NUI.BaseComponents
             return ret;
         }
 
-        [Obsolete("This is temporal API. Currently Parent returns View but Container class has been introduced so 'View Parent' will be changed 'Container Parent' later soon, then this will be removed")]
+        //This is temporal API. Currently Parent returns View but Container class has been introduced so 'View Parent' will be changed 'Container Parent' later soon, then this will be removed
+        [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
         public Container GetContainerParent()
         {
             return this.GetParent();
@@ -3472,7 +3473,7 @@ namespace Tizen.NUI.BaseComponents
         /// <summary>
         /// Get the number of children held by the view.
         /// </summary>
-        public uint ChildCount
+        public new uint ChildCount
         {
             get
             {
@@ -4079,8 +4080,9 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        [Obsolete("Please DO NOT use! This will be deprecated! Please use 'Container GetParent() for derived class' instead!")]
-        public View Parent
+        //"Please DO NOT use! This will be deprecated! Please use 'Container GetParent() for derived class' instead!"
+        [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
+        public new View Parent
         {
             get
             {