waba.ui
Class Timer

waba.lang.Object
  |
  +--waba.ui.Timer

public class Timer
extends Object

Timer represents a control's timer. Timers are created and destroyed using the addTimer() and removeTimer() methods present in the Control class.


Field Summary
protected  int lastTick
          The timestamp of the last tick.
protected  int millis
          The timer interval in milliseconds.
protected  Timer next
          The next timer in the linked list.
protected  Control target
          The control to receive a timer event.
 
Constructor Summary
Timer()
           
 
Methods inherited from class waba.lang.Object
toString
 

Field Detail

target

protected Control target
The control to receive a timer event.

millis

protected int millis
The timer interval in milliseconds.

lastTick

protected int lastTick
The timestamp of the last tick.

next

protected Timer next
The next timer in the linked list.
Constructor Detail

Timer

public Timer()