PDA

View Full Version : Java Applets


77777mohan
Jul 20, 2014, 09:35 AM
In the below program why applet tags is placed inside comments?

import java.awt.*;
import java.applet.*;

/*<applet code="HelloApplet.class" width=200 height=60>
</applet>
*/

public class HelloApplet extends Applet{

public void paint(Graphics g){
g.drawString("hello boss",40,40);
}
}