Code Search for Developers
 
 
  

ProcessNode.cs from MASE: Agile Software Engineering at Krugle


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

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  ApplicationProperties.cs
  CardLocationWith4Corners.cs
  HandWrittenObj.cs
  HandwrittenStoryCard.cs
  Iteration.cs
  Iteration.resx
  MaseListen.cs
  MaseUpdate.cs
  ProcessNode.cs
  ProjectNode.cs
  RegisterObj.cs
  Serializer.cs
  SingleWS.cs
  StoryObj.cs
  TabletContentandUtil.cs
  Utility.cs
  VLabel.cs
  VLabel.resx