Iam using applet for an application. In that when ever a conditin satifies,it has to call the paint method again. Is this possible with repaint method?? or any other methods to follow..?? I tried something like this,
if(j==0){
ready_status=true;
repaint(); // i want paint has to call again here
}