Package de.willuhn.jameica.hbci.rmi

Examples of de.willuhn.jameica.hbci.rmi.Turnus.store()


    // Keiner da, dann erstellen wir ihn.
    turnus = (Turnus) Settings.getDBService().createObject(Turnus.class,null);
    turnus.setIntervall(d.turnus);
    turnus.setTag(d.execday);
    turnus.setZeiteinheit(ze);
    turnus.store();
    return turnus;
  }

  /**
   * Kleine Hilfs-Funktion, die sich eine passende Bezeichnung fuer einen Turnus selbst ausdenkt ;).
View Full Code Here


        else
          t.setTag(Integer.parseInt(s));
      }

      t.setIntervall(Integer.parseInt((String)getIntervall().getValue()));
      t.store();
    }
    catch (RemoteException re)
    {
      Logger.error("error while storing turnus",re);
      throw new ApplicationException(re.getMessage());
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.