Package de.willuhn.jameica.gui.input

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


   */
  public Input getText() throws RemoteException
  {
    if (this.text != null)
      return this.text;
    this.text = new TextInput((String)cache.get("kontoauszug.list.text"),HBCIProperties.HBCI_TRANSFER_USAGE_MAXLENGTH);
    this.text.addListener(this.listener);
    return this.text;
  }
View Full Code Here


    String s = this.transfer.getBezeichnung();
    if (s == null || s.length() == 0)
      s = i18n.tr("Sammel-Auftrag vom {0}", HBCI.DATEFORMAT.format(new Date()));

    this.bezeichnung = new TextInput(s,255);
    this.bezeichnung.setMandatory(true);
    this.bezeichnung.setName(i18n.tr("Bezeichnung"));
    return this.bezeichnung;
  }
View Full Code Here

  public TextInput getZweck() throws RemoteException
  {
    if (zweck != null)
      return zweck;
    // BUGZILLA #10 http://www.willuhn.de/bugzilla/show_bug.cgi?id=10
    zweck = new TextInput(getTransfer().getZweck(),HBCIProperties.HBCI_TRANSFER_USAGE_MAXLENGTH);
    zweck.setName(i18n.tr("Verwendungszweck"));
    zweck.setValidChars(HBCIProperties.HBCI_DTAUS_VALIDCHARS);
    zweck.setMandatory(true);
    return zweck;
  }
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.