X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI%2Fsrc%2Fpublic%2FTimer.cs;h=2819f9528f231996f3489501eee0e06449967920;hb=0d15b768d32259ad32d6d862255eab82c64c26ec;hp=cbb7dd60991abd2f96091dd584683b4d268bc50b;hpb=5a2da2ff29f963c22a5ced7600bec62ab5bde149;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI/src/public/Timer.cs b/src/Tizen.NUI/src/public/Timer.cs index cbb7dd6..2819f95 100755 --- a/src/Tizen.NUI/src/public/Timer.cs +++ b/src/Tizen.NUI/src/public/Timer.cs @@ -98,6 +98,7 @@ namespace Tizen.NUI /// (in the type of TickEventHandler-DaliEventHandlerWithReturnType)
/// provided by the user. The ticked signal is emitted after specified time interval.
/// + /// 3 public event EventHandlerWithReturnType Tick { add @@ -136,6 +137,7 @@ namespace Tizen.NUI /// /// Interval in milliseconds. /// A new timer. + /// 3 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.
/// In case a timer is already running, its time is reset and the timer is restarted.
/// + /// 3 public void Start() { NDalicPINVOKE.Timer_Start(swigCPtr); @@ -168,6 +171,7 @@ namespace Tizen.NUI /// /// Stops the timer. /// + /// 3 public void Stop() { NDalicPINVOKE.Timer_Stop(swigCPtr); @@ -177,6 +181,7 @@ namespace Tizen.NUI /// /// Gets/Sets the interval of the timer. /// + /// 4 public uint Interval { get @@ -211,6 +216,7 @@ namespace Tizen.NUI /// Tells whether the timer is running. /// /// Whether the timer is started or not. + /// 3 public bool IsRunning() { bool ret = NDalicPINVOKE.Timer_IsRunning(swigCPtr); @@ -227,4 +233,4 @@ namespace Tizen.NUI } -} +} \ No newline at end of file