(view: PhaseView, data: DynamicPhase, selection?: SelectionStorage)
| 120 | } |
| 121 | |
| 122 | private displayPhaseView(view: PhaseView, data: DynamicPhase, selection?: SelectionStorage): |
| 123 | void { |
| 124 | const rememberedSelection = selection ? selection : this.hideCurrentPhase(); |
| 125 | view.initializeContent(data, rememberedSelection); |
| 126 | this.currentPhaseView = view; |
| 127 | } |
| 128 | |
| 129 | private displayNextGraphPhase(): void { |
| 130 | let nextPhaseIndex = this.selectMenu.selectedIndex + 1; |
no test coverage detected