Flicker Prevention 1
l
Clearing the background in
update()
can
create lots of
flicker
in the application.
l
It is customary to
over-ride
update()
in
the customized frame as follows:
public void update(Graphics g)
{
paint(g);
}
l