Inheritance: DataDictionary.Namable
 public virtual void visit(Chapter 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(Chapter obj)
 {
     visit(obj, true);
 }
 public void insertChapters(int idx, Chapter el,Lock aLock)
 {
     __setDirty(true);
       allChapters().Insert (idx, el);
     NotifyControllers(aLock);
 }
 public void appendChapters(Lock aLock,Chapter el)
 {
     __setDirty(true);
       el.__setDirty(true);
       allChapters().Add(el);
       acceptor.connectSon (this, el);
     NotifyControllers(aLock);
 }
 public void copyTo(Chapter other)
 {
     base.copyTo(other);
     other.aId = aId;
     other.aParagraphs = aParagraphs;
     other.aTypeSpecs = aTypeSpecs;
 }
 public void copyTo(Chapter other)
 {
     base.copyTo(other);
     other.aId = aId;
     other.aParagraphs = aParagraphs;
     other.aTypeSpecs = aTypeSpecs;
     other.aRuleCheckDisabling = aRuleCheckDisabling;
 }