addFinancialInfoButton = new Button(mainComposite, SWT.PUSH);
addFinancialInfoButton.setText("Adicionar");
addFinancialInfoButton.addListener(SWT.Selection, new Listener(){
public void handleEvent(Event arg0) {
new EmployeeFinantialDialog(getShell(), getMySelf()).open();
}
});
FormData data = new FormData();
data.top = new FormAttachment(yearSpinner, 10);