import objectdraw.*; import java.awt.*; // CS I (810:061) Laboratory 1 // Enter your name, section, and the date here. public class NoClicking extends WindowController{ // Declaration of Methods // begin - executed when the program starts to execute public void begin() { FilledRect signBackground = new FilledRect(150, 50, 100, 100, canvas); signBackground.setColor(Color.yellow); new FramedRect(150, 50, 100, 100, canvas); new Text("CLICKING", 170, 93, canvas); FramedOval noCircle = new FramedOval(155, 55, 90, 90, canvas); Line noSlash = new Line(169, 69, 230, 130, canvas); noCircle.setColor(Color.red); noSlash.setColor(Color.red); // INSERT MORE COMMANDS HERE TO COMPLETE SIGN and GROUND } // end begin } // end NoClicking