#region CPL License /* Nuclex Framework Copyright (C) 2002-2014 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion using System; using System.Collections.Generic; namespace Nuclex.Support.Collections { /// Base class for objects that can be parented to an owner /// Type of the parent object public class Parentable { /// The parent object that owns this instance protected TParent Parent { get { return this.parent; } } /// Invoked whenever the instance's owner changes /// /// When items are parented for the first time, the oldParent argument will /// be null. Also, if the element is removed from the collection, the /// current parent will be null. /// /// Previous owner of the instance protected virtual void OnParentChanged(TParent oldParent) { } /// Assigns a new parent to this instance internal void SetParent(TParent parent) { TParent oldParent = this.parent; this.parent = parent; OnParentChanged(oldParent); } /// Current parent of this object private TParent parent; } } // namespace Nuclex.Support.Collections