// CS 134 program to draw a warning sign // First attempt - not good style! import objectdraw.*; import java.awt.*; public class NoClicking extends WindowController { public void begin() { // commands to draw a warning sign new FramedRect(200, 70, 100, 100, canvas); new FramedOval(207, 77, 86, 86, canvas); new Text("CLICKING", new Location(225,115), canvas); new Line(new Location(220,90), new Location(282,150), canvas); new FilledRect(248, 170, 5, 180, canvas); } }