I set up the TimerTask UpdateTask but it only fires once at the when I start my program. Why doesn't it continue to trigger?
Some of the methods here are in other classes, if you need them, don't hesitate to let me know.
import java.awt.Graphics;
import java.util.Timer;
import java.util.TimerTask;
public class graphpanel extends variables
{
Timer timer = new Timer();
int ypoint;
int barheight;
int height = getHeight();
int width = getWidth();
int bars = (int)getLife() - (int)getAge();
int xpoint = 0;
int barwidth = 20;
public graphpanel()
{
timer.schedule(new UpdateTask(), 10);
}
public void paintComponent (Graphics g)
{
super.paintComponent(g);
for (int i = 0; i < bars; i++)
{
barheight = (int) getTime(i)/100;
ypoint = height/2 - barheight;
g.drawRect(xpoint, ypoint, barwidth, barheight);
g.drawString("hey", 10*i, 40);
}
}
class UpdateTask extends TimerTask
{
public void run()
{
bars = (int)getLife() - (int)getAge();
System.out.print("TimerTask detected");
repaint();
}
}
}
Timer.schedule(TimerTask, long)
only schedules the task for one-time execution.Use
for repeating invocations of your
TimerTask
.More info: JavaDoc