A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

111 lines
3.1 KiB

/*
Copyright 2007-2013 The NGenerics Team
(https://github.com/ngenerics/ngenerics/wiki/Team)
This program is licensed under the GNU Lesser General Public License (LGPL). You should
have received a copy of the license along with the source code. If not, an online copy
of the license can be found at http://www.gnu.org/copyleft/lesser.html.
*/
using System;
using System.Diagnostics.CodeAnalysis;
using NGenerics.Util;
namespace NGenerics.Patterns.Visitor
{
/// <summary>
/// A visitor that visits objects in order (PreOrder, PostOrder, or InOrder).
/// Used primarily as a base class for Visitors specializing in a specific order type.
/// </summary>
/// <typeparam name="T">The type of objects to be visited.</typeparam>
internal class OrderedVisitor<T> : IVisitor<T>
{
#region Globals
private readonly IVisitor<T> visitorToUse;
#endregion
#region Construction
/// <param name="visitorToUse">The visitor to use when visiting the object.</param>
/// <exception cref="ArgumentNullException"><paramref name="visitorToUse"/> is a null reference (<c>Nothing</c> in Visual Basic).</exception>
public OrderedVisitor(IVisitor<T> visitorToUse)
{
Guard.ArgumentNotNull(visitorToUse, "visitorToUse");
this.visitorToUse = visitorToUse;
}
#endregion
#region IOrderedVisitor<T> Members
/// <summary>
/// Determines whether this visitor is done.
/// </summary>
/// <value></value>
/// <returns>
/// <c>true</c> if this visitor is done; otherwise, <c>false</c>.
/// </returns>
public bool HasCompleted
{
get
{
return visitorToUse.HasCompleted;
}
}
/// <summary>
/// Visits the object in pre order.
/// </summary>
/// <param name="obj">The obj.</param>
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "PreOrder")]
public virtual void VisitPreOrder(T obj)
{
visitorToUse.Visit(obj);
}
/// <summary>
/// Visits the object in post order.
/// </summary>
/// <param name="obj">The obj.</param>
public virtual void VisitPostOrder(T obj)
{
visitorToUse.Visit(obj);
}
/// <summary>
/// Visits the object in order.
/// </summary>
/// <param name="obj">The obj.</param>
public virtual void VisitInOrder(T obj)
{
visitorToUse.Visit(obj);
}
/// <inheritdoc />
public void Visit(T obj)
{
visitorToUse.Visit(obj);
}
#endregion
#region Public Members
/// <summary>
/// Gets the visitor to use.
/// </summary>
/// <value>The visitor to use.</value>
public IVisitor<T> VisitorToUse
{
get
{
return visitorToUse;
}
}
#endregion
}
}