/**********************************************************************
*
* Copyright (c) by Olaf Willuhn
* All rights reserved
*
**********************************************************************/
package de.willuhn.jameica.hbci.gui.action;
import de.willuhn.jameica.gui.Action;
import de.willuhn.jameica.hbci.HBCI;
import de.willuhn.jameica.hbci.gui.dialogs.IbanCalcDialog;
import de.willuhn.jameica.messaging.StatusBarMessage;
import de.willuhn.jameica.system.Application;
import de.willuhn.jameica.system.OperationCanceledException;
import de.willuhn.logging.Logger;
import de.willuhn.util.ApplicationException;
import de.willuhn.util.I18N;
/**
* Action zum Starten des IBAN-Rechners.
*/
public class IbanCalc implements Action
{
private final static I18N i18n = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getI18N();
/**
* @see de.willuhn.jameica.gui.Action#handleAction(java.lang.Object)
*/
public void handleAction(Object context) throws ApplicationException
{
try
{
IbanCalcDialog d = new IbanCalcDialog(IbanCalcDialog.POSITION_CENTER);
d.open();
}
catch (OperationCanceledException oce)
{
// ignore
}
catch (ApplicationException ae)
{
throw ae;
}
catch (Exception e)
{
Logger.error("unable to start IBAN calculator",e);
Application.getMessagingFactory().sendMessage(new StatusBarMessage(i18n.tr("IBAN-Rechner konnte nicht gestartet werden: {0}",e.getMessage()),StatusBarMessage.TYPE_ERROR));
}
}
}