Package de.willuhn.jameica.gui.input

Examples of de.willuhn.jameica.gui.input.TextInput


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


      String s = getUmsatz().getGegenkontoNummer();
     
      if (StringUtils.trimToEmpty(s).length() > 10)
        this.empfaengerKonto = new IBANInput(s,null);
      else
        this.empfaengerKonto = new TextInput(s,HBCIProperties.HBCI_IBAN_MAXLENGTH);
     
      this.empfaengerKonto.setEnabled(false);
    }
    return this.empfaengerKonto;
  }
View Full Code Here

   */
  public Input getPrimanota() throws RemoteException
  {
    if (this.primanota == null)
    {
      this.primanota = new TextInput(getUmsatz().getPrimanota());
      this.primanota.setEnabled(false);
    }
    return this.primanota;
  }
View Full Code Here

   */
  public Input getArt() throws RemoteException
  {
    if (this.art == null)
    {
      this.art = new TextInput(getUmsatz().getArt());
      this.art.setEnabled(false);
    }
    return this.art;
  }
View Full Code Here

   */
  public Input getCustomerRef() throws RemoteException
  {
    if (this.customerRef == null)
    {
      this.customerRef = new TextInput(getUmsatz().getCustomerRef());
      this.customerRef.setEnabled(false);
    }
    return this.customerRef;
  }
View Full Code Here

      // Aus Platzgruenden zeigen wir das kombiniert an.
      if (gv == null)
        gv = "";
      if (add != null && add.length() > 0)
        gv = gv + "/" + add;
      this.gvcode = new TextInput(gv,7);
      this.gvcode.setValidChars("01234567890/");
      this.gvcode.setEnabled(false);
    }
    return this.gvcode;
  }
View Full Code Here

   */
  public Input getName() throws RemoteException
  {
    if (name != null)
      return name;
    name = new TextInput(getTransfer().getBezeichnung());
    name.setMandatory(true);
    name.setEnabled(!getTransfer().ausgefuehrt());
    return name;
  }
View Full Code Here

  private Input getHost()
  {
    if (this.host != null)
      return this.host;

    this.host = new TextInput(this.passport.getHost())
    {
      public Object getValue()
      {
        // Ueberschrieben, um ggf. das https:// am Anfang abzuschneiden
        String s = (String) super.getValue();
View Full Code Here

   */
  private Input getUserId()
  {
    if (this.userid == null)
    {
      this.userid = new TextInput(this.passport.getUserId());
      this.userid.setMandatory(true);
    }
    return this.userid;
  }
View Full Code Here

   */
  private Input getCustomerId()
  {
    if (this.customerid == null)
    {
      this.customerid = new TextInput(this.passport.getCustomerId());
      this.customerid.setComment(i18n.tr("Meist identisch mit Benutzerkennung"));
    }
    return this.customerid;
  }
View Full Code Here

TOP

Related Classes of de.willuhn.jameica.gui.input.TextInput

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.