Java Applet (example)
import java.applet.*;
import java.awt.*; // User Interface components
public class HelloWorld extends Applet
{
private Font f;
public void paint (Graphics g)
{
g.setFont (f);
g.setColor (Color.red);
g.drawString ("Hello from Java!", 0, 50);
}
public void init ()
{
f = new Font ("Helvetica", Font.BOLD, 24);
}
}
APPLET
Previous slide
Next slide
Back to first slide
View graphic version