Package de.willuhn.jameica.hbci.util

Examples of de.willuhn.jameica.hbci.util.SaldoFinder


    // BUGZILLA 1036
    double startSaldo = 0.0d;
    if (this.konto != null)
      startSaldo = this.konto.getNumUmsaetze() > 0 ? KontoUtil.getAnfangsSaldo(this.konto,start) : this.konto.getSaldo();
   
    SaldoFinder finder = new SaldoFinder(list,startSaldo);
    this.data = new ArrayList<Value>();
   
    Calendar cal = Calendar.getInstance();
    cal.setTime(start);
    Date end = DateUtil.endOfDay(new Date());
   
    while (!start.after(end))
    {
      Value s = new Value(start,finder.get(start));
      this.data.add(s);
     
      // Und weiter zum naechsten Tag
      cal.add(Calendar.DAY_OF_MONTH,1);
      start = cal.getTime();
View Full Code Here


    ////////////////////////////////////////////////////////////////////////////

    ////////////////////////////////////////////////////////////////////////////
    // Schritt 4: Homogenisieren, sodass wir fuer jeden Tag einen Wert haben.
    List<Value> result = new LinkedList<Value>();
    SaldoFinder finder = new SaldoFinder(salden,startSaldo);
   
    // Iterieren ueber den Zeitraum.
    Calendar cal = Calendar.getInstance();
    cal.setTime(from);
   
    while (!from.after(to))
    {
      Value v = new Value(from,finder.get(from));
      result.add(v);
     
      // Und weiter zum naechsten Tag
      cal.add(Calendar.DATE,1);
      from = cal.getTime();
View Full Code Here

TOP

Related Classes of de.willuhn.jameica.hbci.util.SaldoFinder

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.