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