public virtual void visit(Folder 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(Folder obj) { visit(obj, true); }
public void insertFolders(int idx, Folder el,Lock aLock) { __setDirty(true); allFolders().Insert (idx, el); NotifyControllers(aLock); }
public void appendFolders(Lock aLock,Folder el) { __setDirty(true); el.__setDirty(true); allFolders().Add(el); acceptor.connectSon (this, el); NotifyControllers(aLock); }
public void copyTo(Folder other) { base.copyTo(other); other.aFolders = aFolders; other.aTranslations = aTranslations; }
public void copyTo(Folder other) { base.copyTo(other); other.aFolders = aFolders; other.aTranslations = aTranslations; other.aRuleCheckDisabling = aRuleCheckDisabling; }