コード例 #1
0
 public Object get(int index) {
   ensureInitFastListCache();
   CachedObject co = _cache.get(index);
   if (co != CachedObject.NONE) {
     return co.obj;
   }
   return _persistentList.get(index);
 }