protected abstract SubSetNode <HI> NewSubSet(HeapItemSet <HI> items);
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 override SubSetNode <AllocatedObject> NewSubSet(HeapItemSet <AllocatedObject> items) { return(new AllocatedObjectSubSetNode(model, this, items)); }
protected SubSetNode(HeapExplorerTreeModel model, Node <HI> parent, HeapItemSet <HI> items) : base(model, parent, null) { this.items = items; }