GetCallModel() public méthode

public GetCallModel ( ) : List
Résultat List
Exemple #1
0
        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();
        }
Exemple #2
0
        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();
        }