1 2 package org.objectweb.jac.samples.contacts; 3 4 public class Run { 5 6 /** 7 * This sample is a contact list, showing how the GUI, persistence 8 * and session components can work. 9 */ 10 public static void main(String[] params) { 11 ContactRepository cr = new ContactRepository(); 12 contacts = new FilteredContacts(cr); 13 } 14 static FilteredContacts contacts; 15 } 16 17