import objectdraw.*; import java.awt.*; import java.awt.event.*; import java.util.ArrayList; public class WordPlay extends WindowController implements AdjustmentListener, ActionListener { // Any needed constants go here... // PIVs go here (Private Instance Variables) private Scrollbar redScrollBar, greenScrollBar, blueScrollBar; private TextField theMessage; // -------------------- public and interface methods -------------------- public void begin() { Panel colorPanel = new Panel(); // TextField and ScrollBars. } // ----------------------- private helper methods -------------------- private void clearPrevious() // clears the canvas of previous Text { // and FilledRect output before new message } private void setColor( Color c ) // sets the color of all FilledRects { // if the user uses any of the 3 // Scrollbars (red, green, or blue). } }