public class Driver { public static void main(String[] args) { int frameWidth = 400, frameHeight = 250; MyPanel panel = new MyPanel(new RequestProcessor(), frameWidth, frameHeight); MyFrame frame = new MyFrame("Example 2", panel, frameWidth, frameHeight); frame.show(); } }