private void createPrintLink() {
Link printLink = new Link(mainPage, SWT.NONE);
printLink.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WIDGET_HIGHLIGHT_SHADOW));
printLink.setText("Para imprimir o extrato banc�rio <A>clique aqui</A>");
printLink.addListener(SWT.Selection, new Listener(){
public void handleEvent(Event arg0) {
CreateReports.createFlowBankAccountReport(getCheckDataMap(), getStartDate(), getEndDate(), account);
}
});