1 17 package org.apache.commons.collections.primitives.adapters; 18 19 import java.io.Serializable ; 20 import java.util.List ; 21 22 import org.apache.commons.collections.primitives.DoubleList; 23 24 36 final public class DoubleListList extends AbstractDoubleListList implements Serializable { 37 38 50 public static List wrap(DoubleList list) { 51 if(null == list) { 52 return null; 53 } else if(list instanceof Serializable ) { 54 return new DoubleListList(list); 55 } else { 56 return new NonSerializableDoubleListList(list); 57 } 58 } 59 60 65 public DoubleListList(DoubleList list) { 66 _list = list; 67 } 68 69 protected DoubleList getDoubleList() { 70 return _list; 71 } 72 73 private DoubleList _list = null; 74 } 75 | Popular Tags |