Наследование: DataDictionary.Namable
 public virtual void visit(SourceTextComment obj, bool visitSubNodes)
 {
     visit ((Namable) 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(SourceTextComment obj)
 {
     visit(obj, true);
 }
 public void insertComments(int idx, SourceTextComment el,Lock aLock)
 {
     __setDirty(true);
       allComments().Insert (idx, el);
     NotifyControllers(aLock);
 }
 public void copyTo(SourceTextComment other)
 {
     base.copyTo(other);
 }
 public void appendComments(Lock aLock,SourceTextComment el)
 {
     __setDirty(true);
       el.__setDirty(true);
       allComments().Add(el);
       acceptor.connectSon (this, el);
     NotifyControllers(aLock);
 }