Esempio n. 1
0
    public RangeIteratorBase(Session session, PersistentStore store, TableBase t, int position) {

      this.session = session;
      this.rangePosition = position;
      this.store = store;
      it = t.rowIterator(store);
      isBeforeFirst = true;
    }