public override void Remove(DrawingElement c)
 {
     Console.WriteLine("Con not remove from PrimitiveElement");
 }
 public override void Remove(DrawingElement c)
 {
     elements.Remove(c);
 }
 public override void Add(DrawingElement c)
  {
    Console.WriteLine("Con not add to PrimitiveElement");
  }
 public abstract void Remove(DrawingElement c);
 public override void Add(DrawingElement c)
 {
     elements.Add(c);
 }
Exemple #6
0
 public override void Remove(DrawingElement c)
 {
     Console.WriteLine("Con not remove from PrimitiveElement");
 }
 public abstract void Add(DrawingElement c);
Exemple #8
0
 public override void Add(DrawingElement c)
 {
     Console.WriteLine("Con not add to PrimitiveElement");
 }
Exemple #9
0
 public override void Remove(DrawingElement c)
 {
     elements.Remove(c);
 }
Exemple #10
0
 public override void Add(DrawingElement c)
 {
     elements.Add(c);
 }
Exemple #11
0
 public abstract void Remove(DrawingElement c);
Exemple #12
0
 public abstract void Add(DrawingElement c);