Пример #1
0
        public LBD Load(string lbdPath)
        {
            var lbd = LibLSDUtil.LoadLBD(lbdPath);

            LBDDocument document = CreateDocument(lbd);

            _treeController.PopulateWithDocument(document, Path.GetFileName(lbdPath));

            return(lbd);
        }
Пример #2
0
        public TMD Load(string tmdPath)
        {
            var tmd = LibLSDUtil.LoadTMD(tmdPath);

            TMDDocument document = CreateDocument(tmd);

            _treeController.PopulateWithDocument(document, Path.GetFileName(tmdPath));

            return(tmd);
        }
Пример #3
0
        public TIM Load(string timPath)
        {
            var tim = LibLSDUtil.LoadTIM(timPath);

            TIMDocument document = CreateDocument(tim);

            _treeController.PopulateWithDocument(document, Path.GetFileName(timPath));

            return(tim);
        }
Пример #4
0
        public MOM Load(string momPath)
        {
            var mom = LibLSDUtil.LoadMOM(momPath);

            MOMDocument document = CreateDocument(mom);

            _treeController.PopulateWithDocument(document, Path.GetFileName(momPath));

            return(mom);
        }