Ejemplo n.º 1
0
 /// <summary>
 /// Adds the specified <see cref="TourPrimitive"/> to this instance.
 /// </summary>
 /// <param name="tour">
 /// The <c>TourPrimitive</c> to add to this instance.
 /// </param>
 /// <exception cref="System.ArgumentNullException">tour is null.</exception>
 /// <exception cref="System.InvalidOperationException">
 /// tour belongs to another <see cref="Element"/>.
 /// </exception>
 public void AddTourPrimitive(TourPrimitive tour)
 {
     this.AddChild(tour);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Adds the specified <see cref="TourPrimitive"/> to this instance.
 /// </summary>
 /// <param name="tour">
 /// The <c>TourPrimitive</c> to add to this instance.
 /// </param>
 /// <exception cref="System.ArgumentNullException">tour is null.</exception>
 /// <exception cref="System.InvalidOperationException">
 /// tour belongs to another <see cref="Element"/>.
 /// </exception>
 public void AddTourPrimitive(TourPrimitive tour)
 {
     this.AddChild(tour);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Adds the specified <see cref="TourPrimitive"/> to this instance.
 /// </summary>
 /// <param name="tour">
 /// The <c>TourPrimitive</c> to add to this instance.
 /// </param>
 /// <exception cref="System.ArgumentNullException">tour is null.</exception>
 /// <exception cref="System.InvalidOperationException">
 /// tour belongs to another <see cref="Element"/>.
 /// </exception>
 public void AddTourPrimitive(TourPrimitive tour)
 {
     this.AddAsChild(this.tourPrimitives, tour);
 }
Ejemplo n.º 4
0
 public Playlist(TourPrimitive[] tourPrimitives)
 {
     this.tourPrimitives = tourPrimitives;
 }