Package de.willuhn.jameica.hbci.gui.input

Examples of de.willuhn.jameica.hbci.gui.input.AddressInput


    if (empfName != null)
      return empfName;
   
    SepaSammelTransferBuchung s = this.getBuchung();
   
    empfName = new AddressInput(s.getGegenkontoName(), AddressFilter.FOREIGN);
    empfName.setMandatory(true);
    empfName.addListener(new EmpfaengerListener());
    empfName.setEnabled(!s.getSammelTransfer().ausgefuehrt());
    return empfName;
  }
View Full Code Here


   * @see de.willuhn.jameica.hbci.gui.controller.AbstractTransferControl#getEmpfaengerName()
   * Ueberschrieben, um das Control zu deaktivieren, wenn die Ueberweisung bereits ausgefuehrt wurde.
   */
  public AddressInput getEmpfaengerName() throws RemoteException
  {
    AddressInput i = super.getEmpfaengerName();
    if (((Terminable)getTransfer()).ausgefuehrt())
      i.disable();
    return i;
  }
View Full Code Here

   */
  public Input getEmpfaengerName() throws RemoteException
  {
    if (this.empfaengerName == null)
    {
      this.empfaengerName = new AddressInput(getUmsatz().getGegenkontoName());
      this.empfaengerName.setEnabled(false);
    }
    return this.empfaengerName;
  }
View Full Code Here

   */
  public AddressInput getGegenkontoName() throws RemoteException
  {
    if (gkName != null)
      return gkName;
    gkName = new AddressInput(getBuchung().getGegenkontoName(),AddressFilter.INLAND);
    gkName.setMandatory(true);
    gkName.setEnabled(!getBuchung().getSammelTransfer().ausgefuehrt());
    gkName.addListener(new GegenkontoListener());
    return gkName;
  }
View Full Code Here

    if (empfName != null)
      return empfName;
   
    SepaDauerauftrag t = getTransfer();

    empfName = new AddressInput(t.getGegenkontoName(), AddressFilter.FOREIGN);
    empfName.setValidChars(HBCIProperties.HBCI_SEPA_VALIDCHARS_RELAX);
    empfName.setMandatory(true);
    empfName.addListener(new EmpfaengerListener());
    if (t.isActive())
    {
View Full Code Here

   */
  public AddressInput getEmpfaengerName() throws RemoteException
  {
    if (empfName != null)
      return empfName;
    empfName = new AddressInput(getTransfer().getGegenkontoName(), AddressFilter.FOREIGN);
    empfName.setMandatory(true);
    empfName.addListener(new EmpfaengerListener());
    empfName.setEnabled(!getTransfer().ausgefuehrt());
    return empfName;
  }
View Full Code Here

    }
    catch (RemoteException re)
    {
      Logger.error("unable to restore linked address from transfer",re);
    }
    empfName = new AddressInput(getTransfer().getGegenkontoName(), AddressFilter.FOREIGN);
    empfName.setMandatory(true);
    empfName.addListener(new EmpfaengerListener());
    empfName.setEnabled(!getTransfer().ausgefuehrt());
    return empfName;
  }
View Full Code Here

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

   */
  public AddressInput getEmpfaengerName() throws RemoteException
  {
    if (empfName != null)
      return empfName;
    empfName = new AddressInput(getTransfer().getGegenkontoName(), AddressFilter.INLAND);
    empfName.setName(i18n.tr("Name"));
    empfName.setMandatory(true);
    empfName.addListener(new EmpfaengerListener());
    return empfName;
  }
View Full Code Here

TOP

Related Classes of de.willuhn.jameica.hbci.gui.input.AddressInput

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.