group.addInput(control.getAlias()); // BUGZILLA 72
group.addInput(control.getPath()); // BUGZILLA 148
}
{
ButtonArea buttons = new ButtonArea();
buttons.addButton(i18n.tr("Passwort �ndern"),new Action()
{
public void handleAction(Object context) throws ApplicationException
{
control.changePassword();
}
},null,false,"seahorse-preferences.png");
buttons.addButton(i18n.tr("INI-Brief anzeigen/erzeugen"),new Action()
{
public void handleAction(Object context) throws ApplicationException
{
control.startIniLetter();
}
},null,false,"stock_keyring.png");
buttons.paint(getParent());
}
new Headline(getParent(),i18n.tr("Fest zugeordnete Konten"));
control.getKontoAuswahl().paint(getParent());
ButtonArea buttons = new ButtonArea();
buttons.addButton(i18n.tr("BPD/UPD"),new Action()
{
public void handleAction(Object context) throws ApplicationException
{
control.handleDisplayProperties();
}
},null,false,"text-x-generic.png");
buttons.addButton(i18n.tr("Konfiguration testen"),new Action()
{
public void handleAction(Object context) throws ApplicationException
{
control.handleTest();
}
},null,false,"dialog-information.png");
buttons.addButton(i18n.tr("Signatur-ID synchronisieren"),new Action()
{
public void handleAction(Object context) throws ApplicationException
{
control.syncSigId();
}
},null,false,"view-refresh.png");
buttons.addButton(i18n.tr("Speichern"),new Action()
{
public void handleAction(Object context) throws ApplicationException
{
control.handleStore();
}
},null,false,"document-save.png");
buttons.paint(getParent());
// Ggf. angezeigten Fehlertext von vorher loeschen
Application.getMessagingFactory().sendMessage(new StatusBarMessage("",StatusBarMessage.TYPE_SUCCESS));
}
catch (Exception e)