Package de.willuhn.jameica.gui.input

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


   
    // Checken, ob wir im Konto eine Glaeubiger-ID haben
    if (StringUtils.trimToNull(creditorId) == null)
      creditorId = StringUtils.trimToNull(MetaKey.SEPA_CREDITOR_ID.get(s.getSammelTransfer().getKonto()));
   
    this.creditorId = new TextInput(creditorId,HBCIProperties.HBCI_SEPA_CREDITORID_MAXLENGTH);
    this.creditorId.setName(i18n.tr("Gl�ubiger-Identifikation"));
    this.creditorId.setValidChars(HBCIProperties.HBCI_SEPA_VALIDCHARS);
    this.creditorId.setEnabled(!s.getSammelTransfer().ausgefuehrt());
    this.creditorId.setMandatory(true);
    return this.creditorId;
View Full Code Here


    if (this.mandateId != null)
      return this.mandateId;
   
    SepaSammelLastBuchung s = this.getBuchung();
   
    this.mandateId = new TextInput(s.getMandateId(),HBCIProperties.HBCI_SEPA_MANDATEID_MAXLENGTH);
    this.mandateId.setName(i18n.tr("Mandats-Referenz"));
    this.mandateId.setValidChars(HBCIProperties.HBCI_SEPA_MANDATE_VALIDCHARS);
    this.mandateId.setEnabled(!s.getSammelTransfer().ausgefuehrt());
    this.mandateId.setMandatory(true);
    return this.mandateId;
View Full Code Here

    Container container = new SimpleContainer(parent);

    this.list.addAll(init(PREFIX_BPD,this.passport.getBPD()));
    this.list.addAll(init(PREFIX_UPD,this.passport.getUPD()));

    this.search = new TextInput(null);
    this.search.setName(i18n.tr("Suche"));
    container.addInput(this.search);
    this.search.getControl().addKeyListener(new DelayedAdapter());
   
    this.table = new PropertyTable();
View Full Code Here

    // Intervalle
    this.input = new ReminderIntervalInput(this.interval);
    this.input.addListener(listener);
    ////////////////////////////////////////////////////////////////////////////
   
    TextInput startInput = new TextInput(HBCI.DATEFORMAT.format(this.start));
    startInput.setEnabled(false);
    startInput.setName("Erste Ausf�hrung");

   
    ////////////////////////////////////////////////////////////////////////////
    // End-Datum
    this.error = new LabelInput("");
View Full Code Here

   */
  public Input getBezeichnung()
  {
    if (this.bezeichnung != null)
      return this.bezeichnung;
    this.bezeichnung = new TextInput(getConfig().getName());
    this.bezeichnung.setComment(i18n.tr("Angabe optional"));
    this.bezeichnung.setName(i18n.tr("Alias-Name"));
    return this.bezeichnung;
  }
View Full Code Here

   */
  public Input getPCSCName()
  {
    if (this.pcscName != null)
      return this.pcscName;
    this.pcscName = new TextInput(getConfig().getPCSCName());
    this.pcscName.setHint(i18n.tr("nur eingeben, wenn mehrere Leser vorhanden"));
    this.pcscName.setEnabled(isPCSC());
    this.pcscName.setName(i18n.tr("Identifier des PC/SC-Kartenlesers"));
    return this.pcscName;
  }
View Full Code Here

      throw new RemoteException("unable to load addressbook service",e);
    }
    /////////////////////////////////////////////////////////////////

    // Eingabe-Feld fuer die Suche mit Button hinten dran.
    this.search = new TextInput(mySettings.getString("search",null));
    tab.addLabelPair(i18n.tr("Suchbegriff"), this.search);
    this.search.getControl().addKeyListener(this.listener);

   
    // Damit wir den MessageConsumer beim Schliessen wieder entfernen
View Full Code Here

   */
  public Input getEndToEndId() throws RemoteException
  {
    if (this.endToEndId == null)
    {
      this.endToEndId = new TextInput(getTransfer().getEndtoEndId(),HBCIProperties.HBCI_SEPA_ENDTOENDID_MAXLENGTH);
      this.endToEndId.setName(i18n.tr("End-to-End ID"));
      this.endToEndId.setValidChars(HBCIProperties.HBCI_SEPA_VALIDCHARS);
      this.endToEndId.setEnabled(!getTransfer().ausgefuehrt());
      this.endToEndId.setHint(i18n.tr("freilassen wenn nicht ben�tigt"));
      this.endToEndId.setMandatory(false);
View Full Code Here

  public Input getPmtInfId() throws RemoteException
  {
    if (this.pmtInfId != null)
      return this.pmtInfId;

    this.pmtInfId = new TextInput(getTransfer().getPmtInfId(),HBCIProperties.HBCI_SEPA_ENDTOENDID_MAXLENGTH);
    this.pmtInfId.setName(i18n.tr("Referenz (Payment-Information ID)"));
    this.pmtInfId.setValidChars(HBCIProperties.HBCI_SEPA_VALIDCHARS);
    this.pmtInfId.setEnabled(!getTransfer().ausgefuehrt());
    this.pmtInfId.setHint(i18n.tr("freilassen wenn nicht ben�tigt"));
    this.pmtInfId.setMandatory(false);
View Full Code Here

   */
  public Input getCreditorId() throws RemoteException
  {
    if (this.creditorId == null)
    {
      this.creditorId = new TextInput(getTransfer().getCreditorId(),HBCIProperties.HBCI_SEPA_CREDITORID_MAXLENGTH);
      this.creditorId.setName(i18n.tr("Gl�ubiger-Identifikation"));
      this.creditorId.setValidChars(HBCIProperties.HBCI_SEPA_VALIDCHARS);
      this.creditorId.setEnabled(!getTransfer().ausgefuehrt());
      this.creditorId.setMandatory(true);
    }
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.