Examples of IPageRecordable


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
Copyright © 2018 www.massapi.com. 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.