1 17 package org.apache.commons.collections.primitives.adapters; 18 19 import org.apache.commons.collections.primitives.IntList; 20 21 26 final class NonSerializableIntListList extends AbstractIntListList { 27 28 32 public NonSerializableIntListList(IntList list) { 33 _list = list; 34 } 35 36 protected IntList getIntList() { 37 return _list; 38 } 39 40 private IntList _list = null; 41 42 } 43 | Popular Tags |