1415161718192021222324
ChampionDetailedView view; public ChampionDetailedController(Champion c) { this.champion = c; this.view = new ChampionDetailedView(); this.setView(this.view); this.view.setChampion(c); this.view.addActionListener(this); }