예제 #1
0
 public void Init()
 {
     GrpId     = CM1GroupsTree.TREE_UNDEFINED_NODE;
     Grp       = null;
     GrpChild  = null;
     ChildsNum = 0;
     CnstrNum  = 0;
     PruneFase = CM1GroupsTree.PRUNE_NO_FASE;
 }
예제 #2
0
        public bool Copy(CM1Node source)
        {
            if (source == null)
            {
                return(false);
            }

            GrpId     = source.GrpId;
            Grp       = source.Grp;
            GrpChild  = source.GrpChild;
            ChildsNum = source.ChildsNum;
            CnstrNum  = source.CnstrNum;
            PruneFase = source.PruneFase;

            return(true);
        }