ButtonArea buttonArea = new ButtonArea();
buttonArea.addButton(i18n.tr("L�schen"),new DBObjectDelete(),transfer,false,"user-trash-full.png");
buttonArea.addButton(i18n.tr("Duplizieren..."), new Action() {
public void handleAction(Object context) throws ApplicationException
{
if (control.handleStore()) // BUGZILLA 1181
new Duplicate().handleAction(transfer);
}
},null,false,"edit-copy.png");
Button execute = new Button(i18n.tr("Jetzt ausf�hren..."), new Action() {