1 47 48 package org.ozoneDB.collections; 49 50 import java.util.RandomAccess ; 51 52 57 public final class _BaseList_RandomAccessSubListImpl extends _BaseList_SubListImpl implements _BaseList_SubList, RandomAccess { 58 59 66 _BaseList_RandomAccessSubListImpl(BaseList backing, int fromIndex, int toIndex) { 67 super(backing, fromIndex, toIndex); 68 } 69 70 } 71 | Popular Tags |