Inheritance: DataDictionary.Namable
コード例 #1
0
 public virtual void visit(SourceText obj)
 {
     visit(obj, true);
 }
コード例 #2
0
 public virtual void visit(SourceText 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
     }
 }
コード例 #3
0
 public void insertSourceTexts(int idx, SourceText el,Lock aLock)
 {
     __setDirty(true);
       allSourceTexts().Insert (idx, el);
     NotifyControllers(aLock);
 }
コード例 #4
0
 public void appendSourceTexts(Lock aLock,SourceText el)
 {
     __setDirty(true);
       el.__setDirty(true);
       allSourceTexts().Add(el);
       acceptor.connectSon (this, el);
     NotifyControllers(aLock);
 }
コード例 #5
0
 public void copyTo(SourceText other)
 {
     base.copyTo(other);
     other.aComments = aComments;
 }
コード例 #6
0
 public void copyTo(SourceText other)
 {
     base.copyTo(other);
 }
コード例 #7
0
 public void copyTo(SourceText other)
 {
     base.copyTo(other);
     other.aComments = aComments;
     other.aRegularExpression = aRegularExpression;
 }