sub_arctic.anim
Interface timer
- All Known Implementing Classes:
- point_agent_class, listbox, listbox_test
- public abstract interface timer
This interface defines how the timer callback works. This can be
used in any part of a sub_arctic application or applet to get
notification that some amount of time has elapsed. The amount
of time to wait should be specified by creating a timer
transition and scheduling it with the animation agent.
- See Also:
timer_transition
Method Summary |
void |
time_expired(event e)
This method is called when the amount of time requested via
the timer_transition has elapsed. |
time_expired
public void time_expired(event e)
- This method is called when the amount of time requested via
the timer_transition has elapsed.
- Parameters:
event
- e the event that caused the timer to expire. This is
animation event, and can safely be ignored by most
users of this interface.