// import libraries public class BouncyBall extends Applet { // declare variables for Ball array, max size, current size // init method (generated by template) just calls resize(width,height); public void paint(Graphics graphic) { // clear the graphic; // insert some Balls into the array (handing off graphic window) // loop for many "frames": // loop for each Ball in the array: // draw and move each Ball // pause for each frame so they're visible } public void insert(Ball b) { // put the Ball in the array (using max size, current size) } public int pause() { // loop around, maybe calculating something, then return result } public void clear(Graphics g) { // clear frame by drawing a background color rectangle } } // END class BouncyBall