From: dongsug.song Date: Wed, 6 Apr 2022 01:29:10 +0000 (+0900) Subject: [NUI] Fix comments according to ACR review X-Git-Tag: submit/tizen_6.0/20220818.073614~1^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3320674f5abd9f5b9a371bebe3c3286122aec1ec;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Fix comments according to ACR review --- diff --git a/src/Tizen.NUI/src/public/Color.cs b/src/Tizen.NUI/src/public/Color.cs index d6d1326c2..09161634f 100755 --- a/src/Tizen.NUI/src/public/Color.cs +++ b/src/Tizen.NUI/src/public/Color.cs @@ -185,10 +185,10 @@ namespace Tizen.NUI /// The red component. /// /// - /// The setter is deprecated in API8 and will be removed in API10. Please use new Color(...) constructor. + /// The setter is deprecated in API8 and will be removed in API10. Use the new Color(...) constructor. /// /// - /// // DO NOT use like the followings! + /// // DO NOT use as follows:! /// Color color = new Color(); /// color.R = 0.1f; /// // Please USE like this @@ -200,7 +200,7 @@ namespace Tizen.NUI { set { - Tizen.Log.Fatal("NUI", "Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Color(...) constructor"); + Tizen.Log.Fatal("NUI", "Please do not use this setter, Deprecated in API8, will be removed in API10. Use the new Color(...) constructor"); Interop.Vector4.Vector4_r_set(swigCPtr, ValueCheck(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -218,10 +218,10 @@ namespace Tizen.NUI /// The green component. /// /// - /// The setter is deprecated in API8 and will be removed in API10. Please use new Color(...) constructor. + /// The setter is deprecated in API8 and will be removed in API10. Use the new Color(...) constructor. /// /// - /// // DO NOT use like the followings! + /// // DO NOT use as follows: /// Color color = new Color(); /// color.G = 0.5f; /// // Please USE like this @@ -233,7 +233,7 @@ namespace Tizen.NUI { set { - Tizen.Log.Fatal("NUI", "Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Color(...) constructor"); + Tizen.Log.Fatal("NUI", "Please do not use this setter, Deprecated in API8, will be removed in API10. Use the new Color(...) constructor"); Interop.Vector4.Vector4_g_set(swigCPtr, ValueCheck(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -251,10 +251,10 @@ namespace Tizen.NUI /// The blue component. /// /// - /// The setter is deprecated in API8 and will be removed in API10. Please use new Color(...) constructor. + /// The setter is deprecated in API8 and will be removed in API10. Use the new Color(...) constructor. /// /// - /// // DO NOT use like the followings! + /// // DO NOT use as follows:! /// Color color = new Color(); /// color.B = 0.9f; /// // Please USE like this @@ -266,7 +266,7 @@ namespace Tizen.NUI { set { - Tizen.Log.Fatal("NUI", "Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Color(...) constructor"); + Tizen.Log.Fatal("NUI", "Please do not use this setter, Deprecated in API8, will be removed in API10. Use the new Color(...) constructor"); Interop.Vector4.Vector4_b_set(swigCPtr, ValueCheck(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -284,10 +284,10 @@ namespace Tizen.NUI /// The alpha component. /// /// - /// The setter is deprecated in API8 and will be removed in API10. Please use new Color(...) constructor. + /// The setter is deprecated in API8 and will be removed in API10. Use the new Color(...) constructor. /// /// - /// // DO NOT use like the followings! + /// // DO NOT use as follows:! /// Color color = new Color(); /// color.A = 1.0f; /// // Please USE like this @@ -299,7 +299,7 @@ namespace Tizen.NUI { set { - Tizen.Log.Fatal("NUI", "Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Color(...) constructor"); + Tizen.Log.Fatal("NUI", "Please do not use this setter, Deprecated in API8, will be removed in API10. Use the new Color(...) constructor"); Interop.Vector4.Vector4_a_set(swigCPtr, ValueCheck(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();