Наследование: DataDictionary.Namable
 public virtual void visit(Specification obj)
 {
     visit(obj, true);
 }
 public virtual void visit(Specification 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 void copyTo(Specification other)
 {
     base.copyTo(other);
     other.aVersion = aVersion;
     other.aChapters = aChapters;
     other.aChapterRefs = aChapterRefs;
 }
 public void insertSpecifications(int idx, Specification el,Lock aLock)
 {
     __setDirty(true);
       allSpecifications().Insert (idx, el);
     NotifyControllers(aLock);
 }
 public void appendSpecifications(Lock aLock,Specification el)
 {
     __setDirty(true);
       el.__setDirty(true);
       allSpecifications().Add(el);
       acceptor.connectSon (this, el);
     NotifyControllers(aLock);
 }
 public void setSpecification(Specification v)
 {
     aSpecification = v;
       if ( v != null ) {
     v.setFather(this);
       }
       __setDirty(true);
       NotifyControllers(null);
 }
 public Dictionary()
 {
     Dictionary obj = this;
     aSpecification=(null);
     aRuleDisablings=(null);
     aNameSpaces=(null);
     aNameSpaceRefs=(null);
     aTests=(null);
     aTestRefs=(null);
     aTranslationDictionary=(null);
     aShortcutDictionary=(null);
     aXsi=(null);
     aXsiLocation=(null);
 }