import java.util.List;
import java.util.ArrayList;
import java.util.Collections;


public class SynchronizedListTest {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		List<Integer> l = new ArrayList<Integer> ();
		l.add(2);
		System.out.println("l = " + l);
		List<Integer> syncL = Collections.synchronizedList(l);
		l.add(3);
		//syncL.add(4);
		System.out.println("syncL = " + syncL);
		System.out.println("l = " + l);
	}

}
