Package de.willuhn.jameica.hbci.gui.dialogs

Examples of de.willuhn.jameica.hbci.gui.dialogs.ExportDialog$Exp


      else
      {
        u = (Object[])context;
      }

      ExportDialog d = new ExportDialog(u, UmsatzTyp.class);
      d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here


      else if (context instanceof Umsatz[])
      {
        u = (Umsatz[]) context;
      }

      ExportDialog d = new ExportDialog(u, Umsatz.class);
      d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here

    if (context == null || !(context instanceof EinnahmeAusgabe[]))
      throw new ApplicationException(i18n.tr("Bitte w�hlen Sie die zu exportierenden Daten aus"));

    try
    {
      ExportDialog d = new ExportDialog((EinnahmeAusgabe[]) context,EinnahmeAusgabe.class);
      d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here

      if (context instanceof SammelTransfer)
        list = new SammelTransfer[]{(SammelTransfer) context};
      else
        list = (SammelTransfer[]) context;
     
      ExportDialog d = new ExportDialog(list, getExportClass());
      d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here

    else
      objects = new Object[]{export};

    try
    {
      ExportDialog d = new ExportDialog(objects, type);
      d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here

      }

      if (u == null)
        throw new ApplicationException(i18n.tr("Bitte w�hlen Sie einen oder mehrere Adressen aus"));

      ExportDialog d = new ExportDialog(u, Address.class);
      d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here

    if (!(context instanceof UmsatzTree))
      throw new ApplicationException(i18n.tr("Bitte w�hlen Sie die zu exportierenden Ums�tze aus"));

    try
    {
      ExportDialog d = new ExportDialog(new UmsatzTree[]{(UmsatzTree)context}, UmsatzTree.class);
      d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here

      if (context instanceof SepaSammelTransfer)
        list = new SepaSammelTransfer[]{(SepaSammelTransfer) context};
      else
        list = (SepaSammelTransfer[]) context;
     
      ExportDialog d = new ExportDialog(list, getExportClass());
      d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here

  public void extend(Extendable extendable)
  {
    if (!(extendable instanceof ExportDialog))
      return;
   
    ExportDialog e = (ExportDialog) extendable;
   
    Class type = e.getType();
    if (!type.isAssignableFrom(Umsatz.class))
      return;
   
    // Erstmal per Default nicht ausblenden
    Exporter.SESSION.put(KEY_SALDO_HIDE,false);
   
    final CheckboxInput check = new CheckboxInput(false);
    check.setName(i18n.tr("Spalte \"Saldo\" in Export ausblenden"));
    check.addListener(new Listener() {
      public void handleEvent(Event event)
      {
        Exporter.SESSION.put(KEY_SALDO_HIDE,check.getValue());
      }
    });
   
    final Container c = e.getContainer();
    c.addInput(check);
  }
View Full Code Here

TOP

Related Classes of de.willuhn.jameica.hbci.gui.dialogs.ExportDialog$Exp

Copyright © 2018 www.massapicom. 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.