I am asking this... b/c when I do this applet....
public class newpalindrome extends java.applet.Applet
{
public void paint (Graphics screen)
{
Graphics2D screen2D=(Graphics2D)screen;
Line2D.Float ln=new Line2D.Float(60f,5f,13f,28f);
screen2D.draw(ln);
}
}
and I open it in the explorer.... nothing draws or fill!!
