Package net.sf.joafip.btreeplus.entity

Examples of net.sf.joafip.btreeplus.entity.IPageRecordable


  public IPageRecordable getPage(final long position,
      final IPageRecordable parentPage, final int index)
      throws HeapException {
    final PageRecord pageRecord = (PageRecord) heapElementManager
        .readHeapFileDataRecord(position);
    final IPageRecordable readHeapFileDataRecord = pageRecord
        .getPageRecordable();
    readHeapFileDataRecord.setParentPage(parentPage, index);
    // ASSERTX
    assert notInternalyManagedPage(readHeapFileDataRecord);
    return readHeapFileDataRecord;
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.btreeplus.entity.IPageRecordable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.