Exemple #1
0
        private void VisitTabs(string appGenGuig, ICatalogFolder p, Action <List <TableInfo> > action, EnumVisitType typeOp, List <TableInfo> lst = null)
        {
            if (lst == null)
            {
                lst = new List <TableInfo>();
            }
            var lstt = p.GetIncludedPropertiesTabs(appGenGuig);

            if (lstt.Count == 0)
            {
                return;
            }
            TabsRecursive(appGenGuig, lstt, action, typeOp, lst);
        }
Exemple #2
0
 protected virtual void EndVisit(ICatalogFolder ct)
 {
 }
Exemple #3
0
 protected virtual void BeginVisit(ICatalogFolder ct)
 {
 }