상속: DataDictionary.Namable
 public virtual void visit(FrameRef 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(FrameRef obj)
 {
     visit(obj, true);
 }
 public void insertTestRefs(int idx, FrameRef el,Lock aLock)
 {
     __setDirty(true);
       allTestRefs().Insert (idx, el);
     NotifyControllers(aLock);
 }
 public void copyTo(FrameRef other)
 {
     base.copyTo(other);
 }
 public void appendTestRefs(Lock aLock,FrameRef el)
 {
     __setDirty(true);
       el.__setDirty(true);
       allTestRefs().Add(el);
       acceptor.connectSon (this, el);
     NotifyControllers(aLock);
 }