/** * Tests ClickableWindow, a class intended to demonstrate * the MouseListener interface. Read this code carefully and then * move on to ClickableWindow. * * @author Jeff Ondich */ import javabook.*; class ClickableWindowTester { public static void main() { ClickableWindow window = new ClickableWindow( "This is clickable", "Ouch" ); } }