Package net.sf.joafip.heapfile.record.service

Examples of net.sf.joafip.heapfile.record.service.HeapFreeNodeManager


      final boolean manageNodeIndex) throws HeapException {
    super();
    heapElementManager = HeapElementManagerFactory.create(setup);
    heapElementManager.setHeapRecordFactory(this);
    heapElementManager.setHeapHeader(new HeapHeader(heapElementManager));
    final HeapFreeNodeManager heapFreeNodeManager = new HeapFreeNodeManager(
        heapElementManager);
    freeNodeTree = new RedBlackTree<Integer>(heapFreeNodeManager, false,
        false);
    final HeapIdNodeManager heapIdNodeManager = new HeapIdNodeManager(
        heapElementManager);
View Full Code Here

TOP

Related Classes of net.sf.joafip.heapfile.record.service.HeapFreeNodeManager

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.