Examples of Dauerauftrag


Examples of de.willuhn.jameica.hbci.rmi.Dauerauftrag

   * @see de.willuhn.jameica.hbci.gui.controller.AbstractTransferControl#getEmpfaengerKonto()
   */
  public TextInput getEmpfaengerKonto() throws RemoteException
  {
    TextInput i = super.getEmpfaengerKonto();
    Dauerauftrag t = (Dauerauftrag) getTransfer();
    if (t.isActive())
      i.setEnabled(getBPD().getBoolean("recktoeditable",true));
    return i;
  }
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Dauerauftrag

   * @see de.willuhn.jameica.hbci.gui.controller.AbstractTransferControl#getEmpfaengerBlz()
   */
  public TextInput getEmpfaengerBlz() throws RemoteException
  {
    TextInput i = super.getEmpfaengerBlz();
    Dauerauftrag t = (Dauerauftrag) getTransfer();
    if (t.isActive())
      i.setEnabled(getBPD().getBoolean("recktoeditable",true));
    return i;
  }
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Dauerauftrag

   * @see de.willuhn.jameica.hbci.gui.controller.AbstractTransferControl#getZweck()
   */
  public TextInput getZweck() throws RemoteException
  {
    TextInput i = super.getZweck();
    Dauerauftrag t = (Dauerauftrag) getTransfer();
    if (t.isActive())
      i.setEnabled(getBPD().getBoolean("usageeditable",true));
    return i;
  }
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Dauerauftrag

   * @see de.willuhn.jameica.hbci.gui.controller.AbstractTransferControl#getZweck2()
   */
  public DialogInput getZweck2() throws RemoteException
  {
    DialogInput i = super.getZweck2();
    Dauerauftrag t = (Dauerauftrag) getTransfer();
    if (t.isActive())
      i.setEnabled(getBPD().getBoolean("usageeditable",true));
    return i;
  }
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Dauerauftrag

  /**
   * @see de.willuhn.jameica.gui.Action#handleAction(java.lang.Object)
   */
  public void handleAction(Object context) throws ApplicationException
  {
    Dauerauftrag d = null;

    if (context instanceof Dauerauftrag)
    {
      d = (Dauerauftrag) context;
    }
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Dauerauftrag

        um.delete();
      }

      // dann die Dauerauftraege
      list = getDauerauftraege();
      Dauerauftrag da = null;
      while (list.hasNext())
      {
        da = (Dauerauftrag) list.next();
        da.delete();
      }

      // dann die SEPA-Dauerauftraege
      list = getSepaDauerauftraege();
      SepaDauerauftrag sda = null;
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Dauerauftrag

                  if (ausgefuehrt) ((AbstractDBObject)tl).setAttribute("ausgefuehrt",new Integer(0));
                  tl.store();
                  if (ausgefuehrt) tl.setAusgefuehrt(true);
                  break;
                case 3: // Transfer.TYP_DAUERAUFTRAG:
                  Dauerauftrag td = (Dauerauftrag) service.createObject(Dauerauftrag.class,s);
                  td.setWeitereVerwendungszwecke(sl);
                  td.store();
                  break;
                case 4: // Transfer.TYP_UMSATZ:
                  Umsatz tum = (Umsatz) service.createObject(Umsatz.class,s);
                  tum.setWeitereVerwendungszwecke(sl);
                  tum.store();
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.