import javax.swing.JApplet ; import java.awt.* ; public class Stonehenge extends JApplet { public void paint( Graphics g ) { g.setColor( Color.blue ) ; g.fillRect( 100, 150, 100, 300 ) ; g.fillRect( 300, 150, 100, 300 ) ; g.fillRect( 450, 150, 100, 300 ) ; g.fillRect( 650, 150, 100, 300 ) ; // New stuff goes here // End of new stuff } }