public LBD Load(string lbdPath) { var lbd = LibLSDUtil.LoadLBD(lbdPath); LBDDocument document = CreateDocument(lbd); _treeController.PopulateWithDocument(document, Path.GetFileName(lbdPath)); return(lbd); }
public TMD Load(string tmdPath) { var tmd = LibLSDUtil.LoadTMD(tmdPath); TMDDocument document = CreateDocument(tmd); _treeController.PopulateWithDocument(document, Path.GetFileName(tmdPath)); return(tmd); }
public TIM Load(string timPath) { var tim = LibLSDUtil.LoadTIM(timPath); TIMDocument document = CreateDocument(tim); _treeController.PopulateWithDocument(document, Path.GetFileName(timPath)); return(tim); }
public MOM Load(string momPath) { var mom = LibLSDUtil.LoadMOM(momPath); MOMDocument document = CreateDocument(mom); _treeController.PopulateWithDocument(document, Path.GetFileName(momPath)); return(mom); }