Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

using System;

namespace EA_ReqPro
{
        /// <summary>
   /// A Base Class designed to work with the findAndProcessPackageElements method.
   /// Users will normally derive their own classes from this and add real functionality
   /// to the over-ridable methods the base class provides.
        /// </summary>
        public class EA_RecursionWorker
        {
                public EA_RecursionWorker()
                {
                }

      public virtual void processElement( EA.Element theElement )
      {
      }
      public virtual void processPackage( EA.Package thePackage )
      {
      }
        }
}