Exemplo n.º 1
0
		/// <summary>
		/// Subclasses should override this, if special behavior is needed to initialize a new object.
		/// It may be public, but its only expected caller is the CreateObject methods of FdoCache.
		/// </summary>
		public override void InitNewInternal()
		{
			base.InitNewInternal();
			IPhVariable var = new PhVariable();
			InputOS.Append(var);

			IMoCopyFromInput copy = new MoCopyFromInput();
			OutputOS.Append(copy);
			copy.ContentRA = var;

			IsAbstract = true;
		}
Exemplo n.º 2
0
		/// <summary>
		/// This is needed at least for the Affix Process slice to work properly. See FWR-1619.
		/// </summary>
		protected override void SetDefaultValuesAfterInit()
		{
			base.SetDefaultValuesAfterInit();
			IPhVariable var = new PhVariable();
			InputOS.Add(var);

			IMoCopyFromInput copy = new MoCopyFromInput();
			OutputOS.Add(copy);
			copy.ContentRA = var;

			IsAbstract = true;
		}