Package org.robolectric.shadows
Class ShadowCountDownTimer
- java.lang.Object
-
- org.robolectric.shadows.ShadowCountDownTimer
-
@Implements(android.os.CountDownTimer.class) public class ShadowCountDownTimer extends Object
-
-
Constructor Summary
Constructors Constructor Description ShadowCountDownTimer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
__constructor__(long millisInFuture, long countDownInterval)
protected void
cancel()
long
getCountDownInterval()
long
getMillisInFuture()
boolean
hasStarted()
void
invokeFinish()
void
invokeTick(long millisUntilFinished)
protected CountDownTimer
start()
-
-
-
Method Detail
-
__constructor__
@Implementation protected void __constructor__(long millisInFuture, long countDownInterval)
-
start
@Implementation protected final CountDownTimer start()
-
cancel
@Implementation protected final void cancel()
-
invokeTick
public void invokeTick(long millisUntilFinished)
-
invokeFinish
public void invokeFinish()
-
hasStarted
public boolean hasStarted()
-
getCountDownInterval
public long getCountDownInterval()
-
getMillisInFuture
public long getMillisInFuture()
-
-