public Executive() { clp = new CommandLineParser(); fm = new FileMngr(); analyzer = new Analyzer(); consoleDisplay = new ConsoleDisplay(); }
private void loadFile(string fileName) { analyzer = new Analyzer(fileName); analyzer.Load(this); this.cmbModules.DataSource = analyzer.GetModuleNames(); this.moduleView.Roots = analyzer.GetModulesModel(); this.callView.Roots = analyzer.GetCallModel(); moduleView.Sort(); callView.Sort(); }