Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2169 ghuddy 1
using System;
2
 
3
namespace EA_ReqPro
4
{
5
	/// <summary>
6
   /// A Base Class designed to work with the findAndProcessPackageElements method.
7
   /// Users will normally derive their own classes from this and add real functionality
8
   /// to the over-ridable methods the base class provides.
9
	/// </summary>
10
	public class EA_RecursionWorker
11
	{
12
		public EA_RecursionWorker()
13
		{
14
		}
15
 
16
      public virtual void processElement( EA.Element theElement )
17
      {
18
      }
19
      public virtual void processPackage( EA.Package thePackage )
20
      {
21
      }
22
	}
23
}