[NUI] Fix build warnings: Fix xml comments 43/150243/2
authorhuiyu,eun <huiyu.eun@samsung.com>
Fri, 15 Sep 2017 02:12:36 +0000 (11:12 +0900)
committerhuiyu,eun <huiyu.eun@samsung.com>
Thu, 21 Sep 2017 01:27:27 +0000 (10:27 +0900)
warnigs: CS1572, CS1573, CS1574

please refer
https://docs.microsoft.com/ko-kr/dotnet/csharp/misc/cs1572
https://docs.microsoft.com/ko-kr/dotnet/csharp/misc/cs1573
https://docs.microsoft.com/ko-kr/dotnet/csharp/misc/cs1574

Change-Id: I359005e57d41d49b9d2ffbd5f22fab73493c8f3a
Signed-off-by: huiyu,eun <huiyu.eun@samsung.com>
src/Tizen.NUI/src/internal/NUIWidgetCoreBackend.cs
src/Tizen.NUI/src/public/BaseComponents/View.cs
src/Tizen.NUI/src/public/Container.cs
src/Tizen.NUI/src/public/Layer.cs

index ec05e43..0f8ff84 100755 (executable)
@@ -145,7 +145,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Region changed event callback function.
         /// </summary>
-        /// <param name="source">Application instance</param>
+        /// <param name="sender">Application instance</param>
         /// <param name="e">Event argument for RegionChanged</param>
         private void OnRegionChanged(object sender, WidgetApplication.WidgetApplicationEventArgs e)
         {
@@ -158,7 +158,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Memory Low event callback function.
         /// </summary>
-        /// <param name="source">Application instance</param>
+        /// <param name="sender">Application instance</param>
         /// <param name="e">Event argument for MemoryLow</param>
         private void OnMemoryLow(object sender, WidgetApplication.WidgetApplicationEventArgs e)
         {
@@ -171,7 +171,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Language changed event callback function.
         /// </summary>
-        /// <param name="source">Application instance</param>
+        /// <param name="sender">Application instance</param>
         /// <param name="e">Event argument for LanguageChanged</param>
         private void OnLanguageChanged(object sender, WidgetApplication.WidgetApplicationEventArgs e)
         {
@@ -186,7 +186,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Battery low event callback function.
         /// </summary>
-        /// <param name="source">Application instance</param>
+        /// <param name="sender">Application instance</param>
         /// <param name="e">Event argument for BatteryLow</param>
         private void OnBatteryLow(object sender, WidgetApplication.WidgetApplicationEventArgs e)
         {
index 1002e87..e7f728b 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;
index 1078d6a..b0632c2 100755 (executable)
@@ -57,8 +57,8 @@ namespace Tizen.NUI
         /// <summary>
         /// Removes a child view from this view. If the view was not a child of this view, this is a no-op.
         /// </summary>
-        /// <pre>This view (the parent) has been initialized. The child view is not the same as the parent view.</pre>
-        /// <param name="child">The child.</param>
+        /// <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>
         public abstract void Remove( View view );
 
         /// <summary>
@@ -111,4 +111,4 @@ namespace Tizen.NUI
             }
         }
     }
-} // namespace Tizen.NUI
\ No newline at end of file
+} // namespace Tizen.NUI
index cc9dd25..f3b4967 100755 (executable)
@@ -41,7 +41,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Adds a child view to this layer.
         /// </summary>
-        /// <seealso cref="Container::Add()">
+        /// <seealso cref="Container.Add()">
         /// </seealso>
         public override void Add(View child)
         {
@@ -53,7 +53,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Removes a child view from this layer. If the view was not a child of this layer, this is a no-op.
         /// </summary>
-        /// <seealso cref="Container::Add()">
+        /// <seealso cref="Container.Remove()">
         /// </seealso>
         public override void Remove(View child)
         {