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