private JMenuItem getJMenuItem_Statistics() {
if (jMenuItem_Statistics == null) {
jMenuItem_Statistics = new JMenuItem(LangageManager.getProperty("entaggedmenubar.statisticitem"));
jMenuItem_Statistics.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
new StatisticsControl((File[]) f.getControlPanel().getAudioFiles().getAudioFiles().toArray(new File[0]), f).start();
}
});
}
return jMenuItem_Statistics;
}