Package de.willuhn.jameica.gui.input

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


   */
  public Input getMandateId() throws RemoteException
  {
    if (this.mandateId == null)
    {
      this.mandateId = new TextInput(getTransfer().getMandateId(),HBCIProperties.HBCI_SEPA_MANDATEID_MAXLENGTH);
      this.mandateId.setName(i18n.tr("Mandats-Referenz"));
      this.mandateId.setValidChars(HBCIProperties.HBCI_SEPA_MANDATE_VALIDCHARS);
      this.mandateId.setEnabled(!getTransfer().ausgefuehrt());
      this.mandateId.setMandatory(true);
    }
View Full Code Here


   */
  public Input getZweck() throws RemoteException
  {
    if (zweck != null)
      return zweck;
    zweck = new TextInput(getTransfer().getZweck(),HBCIProperties.HBCI_FOREIGNTRANSFER_USAGE_MAXLENGTH);
    zweck.setValidChars(HBCIProperties.HBCI_SEPA_VALIDCHARS);
    zweck.setEnabled(!getTransfer().ausgefuehrt());
    return zweck;
  }
View Full Code Here

  /**
   * @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

  /**
   * @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

  public Input getText()
  {
    if (this.text != null)
      return this.text;

    this.text = new TextInput(settings.getString("transferlist.filter.text",null),255);
    this.text.setName(i18n.tr("Suchbegriff"));
    return this.text;
  }
View Full Code Here

  public TextInput getText()
  {
    if (this.text != null)
      return this.text;

    this.text = new TextInput((String)cache.get("kontoauszug.list.text"),HBCIProperties.HBCI_TRANSFER_USAGE_MAXLENGTH);
    this.text.setName(i18n.tr("Suchbegriff"));
    return this.text;
  }
View Full Code Here

   */
  public TextInput getName() throws RemoteException
  {
    if (this.name == null)
    {
      this.name = new TextInput(getUmsatzTyp().getName());
      this.name.setMandatory(true);
    }
    return this.name;
  }
View Full Code Here

   */
  public TextInput getNummer() throws RemoteException
  {
    if (this.nummer == null)
    {
      this.nummer = new TextInput(getUmsatzTyp().getNummer(),5);
      this.nummer.setHint(i18n.tr("Wird f�r die Sortierung verwendet"));
      this.nummer.setMandatory(false);
    }
    return this.nummer;
  }
View Full Code Here

   */
  public TextInput getPattern() throws RemoteException
  {
    if (this.pattern == null)
    {
      this.pattern = new TextInput(getUmsatzTyp().getPattern(),UmsatzTyp.MAXLENGTH_PATTERN);
      this.pattern.setHint(i18n.tr("F�r automatische Zuordnung anhand von Suchbegriffen"));
      this.pattern.addListener(new Listener()
      {
     
        public void handleEvent(Event event)
View Full Code Here

   */
  public Input getGegenkontoName() throws RemoteException
  {
    if (this.gegenkontoName != null)
      return this.gegenkontoName;
    this.gegenkontoName = new TextInput((String)cache.get("kontoauszug.list.gegenkonto.name"),HBCIProperties.HBCI_TRANSFER_NAME_MAXLENGTH);
    this.gegenkontoName.setValidChars(HBCIProperties.HBCI_DTAUS_VALIDCHARS);
    this.gegenkontoName.addListener(this.listener);
    return this.gegenkontoName;
  }
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.