this.buyButton.setText("Buy");
this.buyButton.addSelectionListener(new BuyGoodListener(this.spinner, this.goodId));
Button button = new Button(shell, SWT.NONE);
button.setText("Cancel");
button.addSelectionListener(new CloseDialogListener(this.shell));
}