public void copyTo(Change other)
 {
     other.aGuid = aGuid;
     other.aBefore = aBefore;
     other.aAfter = aAfter;
     other.aOperation = aOperation;
     other.aField = aField;
 }
 public virtual void visit(Change obj, bool visitSubNodes)
 {
     visit ((IXmlBBase)obj, false);
     if (visitSubNodes){
     IXmlBBase[] Subs  = acceptor.subElements((IXmlBBase)obj);
     if (Subs != null){
     for (int i=0; i<Subs.Length; i++) {
       dispatch(Subs[i], true);
     } // If
     } // If
     }
 }
 public void insertChanges(int idx, Change el,Lock aLock)
 {
     __setDirty(true);
       allChanges().Insert (idx, el);
     NotifyControllers(aLock);
 }
 public virtual void visit(Change obj)
 {
     visit(obj, true);
 }
 public void appendChanges(Lock aLock,Change el)
 {
     __setDirty(true);
       el.__setDirty(true);
       allChanges().Add(el);
       acceptor.connectSon (this, el);
     NotifyControllers(aLock);
 }