protected Node(HeapExplorerTreeModel model, Node <HI> parent, AllocationsNode previousAllocationsNode) { this.model = model; this.parent = parent; this.previousAllocationsNode = previousAllocationsNode; this.treeIter = HandleNodeCreation(); }
public AllocatedObjectSubSetNode(HeapExplorerTreeModel model, Node <AllocatedObject> parent, HeapItemSet <AllocatedObject> items) : base(model, parent, items) { }
public HeapObjectSubSetNode(HeapExplorerTreeModel model, Node <HeapObject> parent, HeapItemSet <HeapObject> items) : base(model, parent, items) { }
protected SubSetNode(HeapExplorerTreeModel model, Node <HI> parent, HeapItemSet <HI> items) : base(model, parent, null) { this.items = items; }
public AllocationsNode(HeapExplorerTreeModel model, SeekableLogFileReader.Block[] eventBlocks, AllocationsNode previousAllocationsNode) : base(model, null, previousAllocationsNode) { this.eventBlocks = eventBlocks; this.items = null; }
public SnapshotNode(HeapExplorerTreeModel model, SeekableLogFileReader.Block heapBlock, AllocationsNode previousAllocationsNode) : base(model, null, previousAllocationsNode) { this.heapBlock = heapBlock; this.items = null; this.snapshot = null; }