Example #1
0
 public void moveChild(IComposite fromParent, IComposite toParent)
 {
     fromParent.removeChild(this);
     toParent.addChild(this);
 }