| TimerCycleColor.java |
/*
* Created by IntelliJ IDEA.
* User: root
* Date: Feb 8, 2002
* Time: 12:34:18 PM
* To change template for new class use
* Code Style | Class Templates options (Tools | IDE Options).
*/
package graphics.carl;
class TimerCycleColor implements java.awt.event.ActionListener {
private Main main;
public TimerCycleColor(Main main) {
this.main = main;
}
public void actionPerformed(java.awt.event.ActionEvent e) {
// int t;
main.cycleColor();
// t = myTimer.getDelay();
// if (t > 20) t -=10;
// myTimer.setDelay( t );
// System.out.println(myTimer.getDelay());
}
}