001package horstmann.ch05_mailgui; 002public class MailSystemTester 003{ 004 public static void main(String[] args) 005 { 006 MailSystem system = new MailSystem(MAILBOX_COUNT); 007 008 Telephone p = new Telephone(); 009 Connection c = new Connection(system, p); 010 p.run(c); 011 } 012 013 private static int MAILBOX_COUNT = 20; 014}