public abstract void Remove(DrawingElement d);
 public override void Remove(DrawingElement d)
 {
     elements.Remove(d);
 }
 public abstract void Add(DrawingElement d);
 public override void Remove(DrawingElement c)
 {
     Console.WriteLine("Cannot remove from a PrimitiveElement");
 }
 public override void Add(DrawingElement d)
 {
     elements.Add(d);
 }
Exemplo n.º 6
0
 public override void Remove(DrawingElement c)
 {
     Console.WriteLine(
         "Cannot remove from a PrimitiveElement");
 }
 public override void Add(DrawingElement c)
 {
     Console.WriteLine("Cannot add to a PrimitiveElement");
 }
Exemplo n.º 8
0
 public override void Add(DrawingElement c)
 {
     Console.WriteLine(
         "Cannot add to a PrimitiveElement");
 }
Exemplo n.º 9
0
 public abstract void Remove(DrawingElement d);
Exemplo n.º 10
0
 public abstract void Add(DrawingElement d);
Exemplo n.º 11
0
 public override void Remove(DrawingElement d)
 {
     elements.Remove(d);
 }
Exemplo n.º 12
0
 public override void Add(DrawingElement d)
 {
     elements.Add(d);
 }