All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.bulletproof.gui.Timer

java.lang.Object
   |
   +----com.bulletproof.gui.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 Component class.


Variable Index

 o lastTick
The timestamp of the last tick.
 o millis
The timer interval in milliseconds.
 o next
The next timer in the linked list.
 o target
The control to receive a timer event.

Constructor Index

 o Timer()

Variables

 o target
 protected TimerListener target
The control to receive a timer event.

 o millis
 protected int millis
The timer interval in milliseconds.

 o lastTick
 protected int lastTick
The timestamp of the last tick.

 o next
 protected Timer next
The next timer in the linked list.

Constructors

 o Timer
 public Timer()

All Packages  Class Hierarchy  This Package  Previous  Next  Index