Show ProcessNode.cs syntax highlighted
using System;
using System.Collections;
//using Whiteboard.MaseWR;
using WebCacheSys;
using WebCacheSys.WS;
namespace Whiteboard.SupportingClasses
{
/// <summary>
/// Summary description for ProcessNode.
/// </summary>
public class ProcessNode
{
ProcessVO mySelf;
ArrayList myChildren;
public ProcessNode(ProcessVO me, ProcessVO[] myKids)
{
myChildren = new ArrayList();
mySelf = me;
foreach(ProcessVO i in myKids)
{
myChildren.Add(i);
}
}
#region Getters
public ProcessVO MyIdentity
{
get{return mySelf;}
}
public ArrayList MyChildren
{
get{return myChildren;}
}
#endregion
}
}
See more files for this project here