I've seen posts like this before but the questions or the answers are unclear, so bear with me if you've heard this before. I have a timer and I want an ActionEvent to occur when the timer is set off. I don't want to use the javax.swing.Timer method. How can this be done? It is not necessary to explain but that would be helpful. I'm looking for something like an ActionEvent.do() method
My Code:
/**
*
* @param millisec time in milliseconds
* @param ae action to occur when time is complete
*/
public BasicTimer(int millisec, ActionEvent ae){
this.millisec = millisec;
this.ae = ae;
}
public void start(){
millisec += System.currentTimeMillis();
do{
current = System.currentTimeMillis();
}while(current < millisec);
}
Thanks! Dando18
Here you have some simple timer implementation. Why you just didn't check how other timers work ?