Package de.willuhn.util

Examples of de.willuhn.util.I18N.tr()


  public void handleAction(Object context) throws ApplicationException
  {
    I18N i18n = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getI18N();

    if (context == null || (!(context instanceof SammelTransfer) && !(context instanceof SammelTransfer[])))
      throw new ApplicationException(i18n.tr("Bitte w�hlen Sie mindestens einen Sammel-Auftrag aus"));

    try
    {
      SammelTransfer[] list = null;
      if (context instanceof SammelTransfer)
View Full Code Here


      throw ae;
    }
    catch (Exception e)
    {
      Logger.error("error while exporting sammeltransfer",e);
      GUI.getStatusBar().setErrorText(i18n.tr("Fehler beim Exportieren der Sammel-Auftr�ge"));
    }
  }

  /**
   * Diese Funktion muss in den abgeleiteten Klassen ueberschrieben werden
View Full Code Here

      throw ae;
    }
    catch (Exception e)
    {
      Logger.error("error while importing accounts",e);
      GUI.getStatusBar().setErrorText(i18n.tr("Fehler beim Importieren der Konten"));
    }
  }

}
View Full Code Here

  public void handleAction(Object context) throws ApplicationException
  {
    final I18N i18n = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getI18N();

    if (context == null || !(context instanceof SammelTransfer))
      throw new ApplicationException(i18n.tr("Kein Sammel-Auftrag angegeben"));

    try
    {
      final SammelTransfer u = (SammelTransfer) context;
     
View Full Code Here

    try
    {
      final SammelTransfer u = (SammelTransfer) context;
     
      if (u.ausgefuehrt())
        throw new ApplicationException(i18n.tr("Sammel-Auftrag wurde bereits ausgef�hrt"));

      if (u.getBuchungen().size() == 0)
        throw new ApplicationException(i18n.tr("Sammel-Auftrag enth�lt keine Buchungen"));
      if (u.isNewObject())
        u.store(); // wir speichern bei Bedarf selbst.
View Full Code Here

     
      if (u.ausgefuehrt())
        throw new ApplicationException(i18n.tr("Sammel-Auftrag wurde bereits ausgef�hrt"));

      if (u.getBuchungen().size() == 0)
        throw new ApplicationException(i18n.tr("Sammel-Auftrag enth�lt keine Buchungen"));
      if (u.isNewObject())
        u.store(); // wir speichern bei Bedarf selbst.

      SammelTransferDialog d = new SammelTransferDialog(u,SammelTransferDialog.POSITION_CENTER);
      try
View Full Code Here

        return;
      }
      catch (Exception e)
      {
        Logger.error("error while showing confirm dialog",e);
        GUI.getStatusBar().setErrorText(i18n.tr("Fehler beim Ausf�hren des Sammel-Auftrages"));
        return;
      }
      execute(u);
    }
    catch (RemoteException e)
View Full Code Here

      execute(u);
    }
    catch (RemoteException e)
    {
      Logger.error("error while executing sammelauftrag",e);
      GUI.getStatusBar().setErrorText(i18n.tr("Fehler beim Ausf�hren des Sammel-Auftrages"));
    }
  }

  /**
   * Wird aufgerufen, nachdem alle Sicherheitsabfragen erfolgt sind.
View Full Code Here

      return;
    }
    catch (Exception e)
    {
      Logger.error("error while opening about dialog",e);
      throw new ApplicationException(i18n.tr("Fehler beim Anzeigen des About-Dialogs"),e);
    }
  }

}
View Full Code Here

        d = (SepaDauerauftrag) Settings.getDBService().createObject(SepaDauerauftrag.class,null);
        d.setGegenkonto(e);
      }
      catch (RemoteException e)
      {
        throw new ApplicationException(i18n.tr("Fehler beim Anlegen des Dauerauftrages"));
      }
    }

    GUI.startView(de.willuhn.jameica.hbci.gui.views.SepaDauerauftragNew.class,d);
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.