Release 4.0.0-preview1-00271
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / Timer.cs
index cbb7dd6..2819f95 100755 (executable)
@@ -98,6 +98,7 @@ namespace Tizen.NUI
         /// (in the type of TickEventHandler-DaliEventHandlerWithReturnType<object,TickEventArgs,bool>)<br>
         /// provided by the user. The ticked signal is emitted after specified time interval.<br>
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public event EventHandlerWithReturnType<object, TickEventArgs, bool> Tick
         {
             add
@@ -136,6 +137,7 @@ namespace Tizen.NUI
         /// </summary>
         /// <param name="milliSec">Interval in milliseconds.</param>
         /// <returns>A new timer.</returns>
+        /// <since_tizen> 3 </since_tizen>
         public Timer(uint milliSec) : this(NDalicPINVOKE.Timer_New(milliSec), true)
         {
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -159,6 +161,7 @@ namespace Tizen.NUI
         /// Starts the timer.<br>
         /// In case a timer is already running, its time is reset and the timer is restarted.<br>
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public void Start()
         {
             NDalicPINVOKE.Timer_Start(swigCPtr);
@@ -168,6 +171,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Stops the timer.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public void Stop()
         {
             NDalicPINVOKE.Timer_Stop(swigCPtr);
@@ -177,6 +181,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Gets/Sets the interval of the timer.
         /// </summary>
+        /// <since_tizen> 4 </since_tizen>
         public uint Interval
         {
             get
@@ -211,6 +216,7 @@ namespace Tizen.NUI
         /// Tells whether the timer is running.
         /// </summary>
         /// <returns>Whether the timer is started or not.</returns>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsRunning()
         {
             bool ret = NDalicPINVOKE.Timer_IsRunning(swigCPtr);
@@ -227,4 +233,4 @@ namespace Tizen.NUI
 
     }
 
-}
+}
\ No newline at end of file