Package collections.lists

Source Code of collections.lists.CopyOnWriteListUsing

package collections.lists;

import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;

/**
* User: webserg
* Date: 12.12.11
*/
public class CopyOnWriteListUsing {
    public static void main(String[] args) {
        List l = new CopyOnWriteArrayList();
    }
}
TOP

Related Classes of collections.lists.CopyOnWriteListUsing

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.