Package net.sf.joafip.heapfile.record.entity

Examples of net.sf.joafip.heapfile.record.entity.HeapRecord.readFromFile()


  private void readAndCheck(final HeapRecord heapRecordWrote,
      final byte[] expectedData) throws HeapException, RBTException {
    final HeapRecord heapRecordRead = new HeapRecord(
    /**/this,/* IHeapElementManager heapElementManager */
    /**/0/* long positionInFile */);
    heapRecordRead.readFromFile();
    assertHeapNodeEquals(heapRecordWrote, heapRecordRead, expectedData);
  }

  private void assertHeapNodeEquals(final HeapRecord heapRecordWrote,
      final HeapRecord heapRecordRead, final byte[] expectedData)
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.