2007-05-11 21:15:35 +00:00
|
|
|
#region CPL License
|
|
|
|
/*
|
|
|
|
Nuclex Framework
|
2017-01-21 21:33:55 +00:00
|
|
|
Copyright (C) 2002-2017 Nuclex Development Labs
|
2007-05-11 21:15:35 +00:00
|
|
|
|
|
|
|
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
|
2007-07-24 20:15:19 +00:00
|
|
|
|
2007-02-28 20:20:50 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Nuclex.Support.Collections {
|
|
|
|
|
|
|
|
/// <summary>Base class for objects that can be parented to an owner</summary>
|
2012-03-08 09:55:29 +00:00
|
|
|
/// <typeparam name="TParent">Type of the parent object</typeparam>
|
|
|
|
public class Parentable<TParent> {
|
2007-02-28 20:20:50 +00:00
|
|
|
|
|
|
|
/// <summary>The parent object that owns this instance</summary>
|
2012-03-08 09:55:29 +00:00
|
|
|
protected TParent Parent {
|
2007-02-28 20:20:50 +00:00
|
|
|
get { return this.parent; }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>Invoked whenever the instance's owner changes</summary>
|
|
|
|
/// <remarks>
|
|
|
|
/// 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.
|
|
|
|
/// </remarks>
|
|
|
|
/// <param name="oldParent">Previous owner of the instance</param>
|
2012-03-08 09:55:29 +00:00
|
|
|
protected virtual void OnParentChanged(TParent oldParent) { }
|
2007-02-28 20:20:50 +00:00
|
|
|
|
2007-07-16 20:09:51 +00:00
|
|
|
/// <summary>Assigns a new parent to this instance</summary>
|
2012-03-08 09:55:29 +00:00
|
|
|
internal void SetParent(TParent parent) {
|
|
|
|
TParent oldParent = this.parent;
|
2007-07-16 20:09:51 +00:00
|
|
|
this.parent = parent;
|
|
|
|
|
|
|
|
OnParentChanged(oldParent);
|
|
|
|
}
|
|
|
|
|
2007-02-28 20:20:50 +00:00
|
|
|
/// <summary>Current parent of this object</summary>
|
2012-03-08 09:55:29 +00:00
|
|
|
private TParent parent;
|
2007-02-28 20:20:50 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Nuclex.Support.Collections
|