protected void paint(Composite parent) throws Exception
{
Container group = new SimpleContainer(parent);
group.addText(i18n.tr("Bitte w�hlen Sie die zu verwendende HBCI-Version"),true);
final HBCIVersionInput input = new HBCIVersionInput();
group.addInput(input);
ButtonArea buttons = new ButtonArea();
buttons.addButton(i18n.tr("�bernehmen"), new Action() {
public void handleAction(Object context) throws ApplicationException
{
version = (String) input.getValue();
close();
}
},null,true,"ok.png");
buttons.addButton(i18n.tr("Abbrechen"), new Action() {
public void handleAction(Object context) throws ApplicationException