As I wrote in title,
I want to drawLine
additionally when Timer
generates events.
Line will be draw like
first time;
ㅡ
You'll basically have to (not in order):
paintComponent
method in a component to draw the lines, based on the incrementing counterrepaint()
on your component (will happen on each timer tick)Work on each one of those tasks individually, and when you feel you've mastered each one, you can try putting them all together.