button.setName("ButtonGenerate");
return button;
}
public JButton getButtonReport(WindowInterface window) {
JButton button = new JButton(new ShowReportAction(window,
new TransportCostBasisPrinter(window), null));
button.setIcon(IconEnum.ICON_PRINT.getIcon());
button.setName("ButtonShowReport");
button.setEnabled(false);
return button;