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);
 }
Example #6
0
 public override void Remove(DrawingElement c)
 {
     Console.WriteLine("Con not remove from PrimitiveElement");
 }
 public abstract void Add(DrawingElement c);
Example #8
0
 public override void Add(DrawingElement c)
 {
     Console.WriteLine("Con not add to PrimitiveElement");
 }
Example #9
0
 public override void Remove(DrawingElement c)
 {
     elements.Remove(c);
 }
Example #10
0
 public override void Add(DrawingElement c)
 {
     elements.Add(c);
 }
Example #11
0
 public abstract void Remove(DrawingElement c);
Example #12
0
 public abstract void Add(DrawingElement c);