/**
* @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
*/
public void actionPerformed(ActionEvent arg0) {
ReportConstraintViewHandler reportConstraintViewHandler = new ReportConstraintViewHandler();
ReportConstraintView reportConstraintView = new ReportConstraintView(
reportConstraintViewHandler);
WindowInterface window = new JDialogAdapter(new JDialog(
ProTransMain.PRO_TRANS_MAIN, "Transport statistikk"));
window.add(reportConstraintView.buildPanel(window));
window.pack();
Util.locateOnScreenCenter(window);
window.setVisible(true);
}