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.
Zero/ZeroLevel/Services/Trees/Tree.cs

47 lines
1.0 KiB

6 years ago
using System;
using System.Collections.Generic;
using System.Linq;
namespace ZeroLevel.Services.Trees
{
public class Tree : ITree
{
public Tree()
{
}
6 years ago
public Tree(ITree other)
{
5 months ago
if (other == null!)
6 years ago
throw new ArgumentNullException(nameof(other));
this._rootNodes = other.RootNodes.Select(a => (ITreeNode)a.Clone()).ToList();
}
private readonly List<ITreeNode> _rootNodes = new List<ITreeNode>();
public IEnumerable<ITreeNode> RootNodes
{
get
{
return _rootNodes;
}
}
public ITreeNode Append(string name, object tag)
{
var root = new TreeNode(name, tag);
_rootNodes.Add(root);
return root;
}
public static ITree Create()
{
return new Tree();
}
public static ITree Create(ITree other)
{
return new Tree(other);
}
}
}

Powered by TurnKey Linux.