public virtual void visit(Commit 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 virtual void visit(Commit obj)
 {
     visit(obj, true);
 }
 public void appendCommits(Lock aLock,Commit el)
 {
     __setDirty(true);
       el.__setDirty(true);
       allCommits().Add(el);
       acceptor.connectSon (this, el);
     NotifyControllers(aLock);
 }
 public void insertCommits(int idx, Commit el,Lock aLock)
 {
     __setDirty(true);
       allCommits().Insert (idx, el);
     NotifyControllers(aLock);
 }
 public void copyTo(Commit other)
 {
     other.aMessage = aMessage;
     other.aDate = aDate;
     other.aHash = aHash;
     other.aCommitter = aCommitter;
     other.aChanges = aChanges;
 }