コード例 #1
0
ファイル: Cache.cs プロジェクト: hahaking119/vienna-add-in
        public void LoadBDTLsAndTheirBDTs(ICctsRepository repository)
        {
            foreach (IBdtLibrary bdtl in repository.GetBdtLibraries())
            {
                if (BDTLs.ContainsKey(bdtl.Name))
                {
                    BDTLs.Clear();
                    throw new CacheException("The wizard encountered two BDT libraries having identical names. Please make sure that all BDT libraries within the model have unique names before proceeding with the wizard.");
                }

                BDTLs.Add(bdtl.Name, new cBDTLibrary(bdtl.Name, bdtl.Id));

                foreach (IBdt bdt in bdtl.Bdts)
                {
                    if (BDTLs[bdtl.Name].BDTs.ContainsKey(bdt.Name))
                    {
                        BDTLs[bdtl.Name].BDTs.Clear();
                        throw new CacheException("The wizard encountered two BDTs within one BDT library having identical names. Please make sure that all BDTs within each BDT library have unique names before proceeding with the wizard.");
                    }

                    BDTLs[bdtl.Name].BDTs.Add(bdt.Name, new cBDT(bdt.Name, bdt.Id, bdt.BasedOn.Id, CheckState.Unchecked));
                }
            }

            if (BDTLs.Count == 0)
            {
                throw new CacheException("The repository did not contain any BDT libraries. Please make sure at least one BDT library is present before proceeding with the wizard.");
            }
        }
コード例 #2
0
ファイル: Cache.cs プロジェクト: hahaking119/vienna-add-in
 public void EmptyCache()
 {
     CCLs.Clear();
     CDTLs.Clear();
     BDTLs.Clear();
     BIELs.Clear();
 }