Some important methos in Applets »
By Ramakrishna on Aug 9, 2008 in Applets Tutorial | 0 Comments
Applet methods:
public void init ()
public void start ()
public void stop ()
public void destroy ()
public void paint (Graphics)
Also:
public void repaint()
public void update (Graphics)
public void showStatus(String)
public String getParameter(String)
repaint( ) method:
Call repaint( ) when you have changed something and want your changes to show up on the screen
repaint( ) is a request–it might not happen
When you call repaint( [...]
