//File: TestMouse2.java import CSLib.TrickMouse; public class TestMouse2 { public static void main (String [] args) { TrickMouse bill = new TrickMouse(); //Construct a TrickMouse //named bill bill.setTitle("Bill Goes Crazy"); //Change the title of the window //to "Bill Goes Crazy" bill.speak("Where's the wall?!!!!"); //Tell bill to speak } }