Esempio n. 1
0
        internal PathView(ToolView toolView, ExecutionModel executionModel)
        {
            this.ToolView       = toolView;
            this.ExecutionModel = executionModel;

            this.Name = this.ComputeName();
        }
Esempio n. 2
0
 internal ReplayView(ToolView toolView)
 {
     this.ToolView        = toolView;
     this.heap            = new HeapView(this);
     this.StepAwayCommand = new Command(this.StepAway);
     this.StepBackCommand = new Command(this.StepBack);
     this.StepOverCommand = new Command(this.StepOver);
     this.StepIntoCommand = new Command(this.StepInto);
     this.StepOutCommand  = new Command(this.StepOut);
 }
Esempio n. 3
0
 public CallGraphView(ToolView toolView)
 {
     this.toolView = toolView;
 }