this.add(topPanel, BorderLayout.NORTH);
JTabbedPane tabbedPane = new JTabbedPane();
this.skinsPanel = new JPanel(new WrapLayout());
JScrollPane skinScroller = new VerticalJScrollPane(this.skinsPanel);
skinScroller.getVerticalScrollBar().setUnitIncrement(16);
tabbedPane.addTab(championDetailedViewMessages.getString("skins"), skinScroller);
this.statsPanel = new JEditorPane();
this.statsPanel.setContentType("text/html");
this.statsPanel.setEditable(false);
JScrollPane statsScroller = new VerticalJScrollPane(this.statsPanel);
statsScroller.getVerticalScrollBar().setUnitIncrement(16);
tabbedPane.addTab(championDetailedViewMessages.getString("Stats"), statsScroller);
this.loreTabPanel = new JEditorPane();
this.loreTabPanel.setContentType("text/html");
this.loreTabPanel.setEditable(false);
JScrollPane loreScroller = new VerticalJScrollPane(this.loreTabPanel);
loreScroller.getVerticalScrollBar().setUnitIncrement(16);
tabbedPane.addTab(championDetailedViewMessages.getString("lore"), loreScroller);
JPanel videoPanel = new JPanel();
this.selectionAudioButton = new LocalizedJButton(championDetailedViewMessages, "selection audio");
videoPanel.add(this.selectionAudioButton);
JScrollPane scrollerVideo = new VerticalJScrollPane(videoPanel);
skinScroller.getVerticalScrollBar().setUnitIncrement(16);
tabbedPane.addTab(championDetailedViewMessages.getString("audio_video"), scrollerVideo);
JPanel tipsTabBox = new JPanel();
tipsTabBox.setLayout(new BoxLayout(tipsTabBox, BoxLayout.Y_AXIS));