Package net.sf.joafip.btreeplus.entity.mock

Examples of net.sf.joafip.btreeplus.entity.mock.MockPageRecord


    }
  }

  private void checkCreationState(final byte bits) throws HeapException {
    final DataBlockPage dataBlockPage = new DataBlockPage(bits);
    final MockPageRecord pageRecord = new MockPageRecord();
    pageRecord.setPositionInFile(1545);
    dataBlockPage.setPageRecord(pageRecord);

    final int numberOfBlock = dataBlockPage.getNumberOfBlock();
    final int blockByteSize = (1 << bits) + 4/* int for data length */;
    final long dataAreaSize = PageConstant.PAGE_SIZE
View Full Code Here

TOP

Related Classes of net.sf.joafip.btreeplus.entity.mock.MockPageRecord

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.