Examples of LabelInput


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

   */
  private LabelInput getName() throws RemoteException
  {
    if (this.name == null)
    {
      this.name = new LabelInput("");
      this.name.setName(i18n.tr("Konto"));
      updateName();
    }
    return this.name;
  }
View Full Code Here

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

   */
  private LabelInput getSaldo() throws RemoteException
  {
    if (this.saldo == null)
    {
      this.saldo = new LabelInput("");
      this.saldo.setName("Saldo");
      updateSaldo();
    }
    return this.saldo;
  }
View Full Code Here

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

  public Input getKonto() throws RemoteException
  {
    if (konto != null)
      return konto;
    Konto k = getUmsatz().getKonto();
    konto = new LabelInput(k.getKontonummer());
    konto.setComment(HBCIProperties.getNameForBank(k.getBLZ()));
    return konto;
  }
View Full Code Here

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

  {
    if (betrag != null)
      return betrag;
   
    double s = getUmsatz().getBetrag();
    betrag = new LabelInput(HBCI.DECIMALFORMAT.format(s));
    betrag.setComment(getUmsatz().getKonto().getWaehrung());
    betrag.setColor(ColorUtil.getColor(s,Color.ERROR,Color.SUCCESS,Color.FOREGROUND));
    return betrag;
  }
View Full Code Here

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

  {
    if (saldo != null)
      return saldo;
   
    double s = getUmsatz().getSaldo();
    saldo = new LabelInput(HBCI.DECIMALFORMAT.format(s));
    saldo.setComment(getUmsatz().getKonto().getWaehrung());
    saldo.setColor(ColorUtil.getColor(s,Color.ERROR,Color.SUCCESS,Color.FOREGROUND));
    return saldo;
  }
View Full Code Here

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

  protected void paint(Composite parent) throws Exception
  {
    Container group = new SimpleContainer(parent);
    group.addHeadline(i18n.tr("Details der SEPA-Lastschrift"));
     
    Input kto = new LabelInput(last.getKonto().getIban());
    kto.setComment(last.getKonto().getBezeichnung());
    group.addLabelPair(i18n.tr("Eigenes Konto"),kto);

    Input empfName = new LabelInput(last.getGegenkontoName());
    group.addLabelPair(i18n.tr("Name des Zahlungspflichtigen"),empfName);

    Input empfKto = new LabelInput(HBCIProperties.formatIban(last.getGegenkontoNummer()));
    group.addLabelPair(i18n.tr("IBAN des Zahlungspflichtigen"),empfKto);

    Input empfBic = new LabelInput(last.getGegenkontoBLZ());
    group.addLabelPair(i18n.tr("BIC des Zahlungspflichtigen"),empfBic);

    Input empfMandate = new LabelInput(last.getMandateId());
    group.addLabelPair(i18n.tr("Mandats-Referenz"),empfMandate);

    LabelInput betrag = new LabelInput(HBCI.DECIMALFORMAT.format(last.getBetrag()) + " " + last.getKonto().getWaehrung());
    betrag.setColor(Color.ERROR);
    group.addLabelPair(i18n.tr("Betrag"),betrag);

    group.addHeadline(i18n.tr("Verwendungszweck"));
    group.addText(VerwendungszweckUtil.toString(last,"\n"),false);
   
View Full Code Here

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

   */
  public Input getSumme() throws RemoteException
  {
    if (this.summe != null)
      return this.summe;
    this.summe = new LabelInput(HBCI.DECIMALFORMAT.format(getTransfer().getSumme()));
    Konto k = getTransfer().getKonto();
    this.summe.setComment(k != null ? k.getWaehrung() : "");
    return this.summe;
  }
View Full Code Here

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

   */
  private LabelInput getText()
  {
    if (this.text == null)
    {
      this.text = new LabelInput("");
      this.text.setColor(Color.ERROR);
    }
    return this.text;
  }
View Full Code Here

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

        // BUGZILLA #999
        protected void extend(Container container) throws Exception
        {
          // Nur bei aktiven Dauerauftraegen anzeigen
          if (da.isActive()) {
            final LabelInput warn = new LabelInput("");
            warn.setColor(Color.COMMENT);
            check.addListener(new Listener() {
              public void handleEvent(Event event)
              {
                // Warnhinweis anzeigen, dass der Auftrag nur lokal geloescht wird
                Boolean b = (Boolean) check.getValue();
                if (b.booleanValue())
                  warn.setValue("");
                else
                  warn.setValue(i18n.tr("Auftrag wird nur lokal gel�scht, bei der Bank bleibt er erhalten."));
              }
            });
            container.addCheckbox(check,i18n.tr("Auftrag auch bei der Bank l�schen."));
            container.addLabelPair("",warn);
          }
View Full Code Here

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

  private LabelInput getMessage()
  {
    if (this.msg != null)
      return this.msg;
   
    this.msg = new LabelInput("");
    this.msg.setColor(Color.ERROR);
    return this.msg;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.