[NUI][TCSACR-485] Add some methods for Loading
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 30 Mar 2022 05:52:35 +0000 (14:52 +0900)
committerJaehyun Cho <jaehyun0cho@gmail.com>
Wed, 20 Apr 2022 08:38:08 +0000 (17:38 +0900)
- Make Play / Pause / Stop methods to public API on API level 10.
- These methods are for Loading animation behavior.

Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
src/Tizen.NUI.Components/Controls/Loading.cs

index 9cd8cb4..4e61107 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Copyright(c) 2021 Samsung Electronics Co., Ltd.
+ * Copyright(c) 2022 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -304,8 +304,7 @@ namespace Tizen.NUI.Components
         /// <summary>
         /// Play Loading Animation.
         /// </summary>
-        /// This may be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 10 </since_tizen>
         public void Play()
         {
             PropertyValue attributes = new PropertyValue(0);
@@ -316,8 +315,7 @@ namespace Tizen.NUI.Components
         /// <summary>
         /// Pause Loading Animation.
         /// </summary>
-        /// This may be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 10 </since_tizen>
         public void Pause()
         {
             PropertyValue attributes = new PropertyValue(0);
@@ -328,8 +326,7 @@ namespace Tizen.NUI.Components
         /// <summary>
         /// Stop Loading Animation.
         /// </summary>
-        /// This may be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 10 </since_tizen>
         public void Stop()
         {
             PropertyValue attributes = new PropertyValue(0);