Beispiel #1
0
		} // Kind

		// ----------------------------------------------------------------------
		public void Visit( IRtfElementVisitor visitor )
		{
			if ( visitor == null )
			{
				throw new ArgumentNullException( "visitor" );
			}
			DoVisit( visitor );
		} // Visit
Beispiel #2
0
        }         // Kind

        // ----------------------------------------------------------------------
        public void Visit(IRtfElementVisitor visitor)
        {
            if (visitor == null)
            {
                throw new ArgumentNullException("visitor");
            }
            DoVisit(visitor);
        }         // Visit
Beispiel #3
0
        } // ToString

        protected override void DoVisit(IRtfElementVisitor visitor)
        {
            visitor.VisitText(this);
        } // DoVisit
Beispiel #4
0
		} // GetHashCode

		// ----------------------------------------------------------------------
		protected abstract void DoVisit( IRtfElementVisitor visitor );
Beispiel #5
0
		} // ToString

		// ----------------------------------------------------------------------
		protected override void DoVisit( IRtfElementVisitor visitor )
		{
			visitor.VisitTag( this );
		} // DoVisit
Beispiel #6
0
        }         // GetHashCode

        // ----------------------------------------------------------------------
        protected abstract void DoVisit(IRtfElementVisitor visitor);
Beispiel #7
0
 // ----------------------------------------------------------------------
 protected override void DoVisit( IRtfElementVisitor visitor )
 {
     visitor.VisitGroup( this );
 }