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