1: public class MailSystemTester
2: {
3: public static void main(String[] args)
4: {
5: MailSystem system = new MailSystem(MAILBOX_COUNT);
7: Telephone p = new Telephone();
8: Connection c = new Connection(system, p);
9: p.run(c);
10: }
12: private static int MAILBOX_COUNT = 20;
13: }