import java.awt.*; import java.applet.Applet; public class TwoRedRoseApplet extends Applet { /* declare one variables with which to instantiate one RedRose object in the init() method */ RedRose redRose; public void init() { redRose = new RedRose(); // create RedRose object } public void paint( Graphics g ) { redRose.paintRose(g,10,10); // draw first RedRose redRose.backGroundColor = Color.blue; // use a blue background color redRose.paintRose(g,200,10); // draw another RedRose } }