コード例 #1
0
 public override void Remove(DrawingElement d)
 {
     elements.Remove(d);
 }
コード例 #2
0
 public override void Add(DrawingElement d)
 {
     elements.Add(d);
 }
コード例 #3
0
 public override void Remove(DrawingElement c)
 {
     Console.WriteLine(
         "Cannot remove from a PrimitiveElement");
 }
コード例 #4
0
 public override void Add(DrawingElement c)
 {
     Console.WriteLine(
         "Cannot add to a PrimitiveElement");
 }
コード例 #5
0
 public abstract void Remove(DrawingElement d);
コード例 #6
0
 public abstract void Add(DrawingElement d);