Examples of LabelInput


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

  {
    Container c = new SimpleContainer(parent);
   
    final SelectInput version = this.getPainVersionInput();
    final FileInput target    = this.getFileInput();
    final LabelInput msg      = this.getMessage();
   
    c.addInput(version);
    c.addInput(target);
    c.addInput(msg);
   
    ButtonArea buttons = new ButtonArea();
    this.ok = new Button(i18n.tr("Export starten"),new Action()
    {
      public void handleAction(Object context) throws ApplicationException
      {
        painVersion = (PainVersion) version.getValue();
        if (painVersion == null)
        {
          msg.setValue(i18n.tr("Bitte w�hlen Sie eine Schema-Version aus."));
          return;
        }
       
        String s = StringUtils.trimToNull((String) target.getValue());
        if (s == null)
        {
          msg.setValue(i18n.tr("Bitte w�hlen Sie eine Datei aus"));
          return;
        }
       
        file = new File(s);
        if (file.exists() && file.canRead())
View Full Code Here

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

   * Liefert ein Label fuer Fehlermeldungen.
   * @return ein Label fuer Fehlermeldungen.
   */
  private LabelInput getMessage()
  {
    LabelInput label = new LabelInput("");
    label.setColor(Color.ERROR);
    label.setName("");
    return label;
  }
View Full Code Here

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

      }
    }

    if (size == 0)
    {
      this.exporterListe = new LabelInput(i18n.tr("Keine Export-Filter verf�gbar"));
    }
    else
    {
      Collections.sort(l);
      Exp[] exp = (Exp[]) l.toArray(new Exp[size]);
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 Lastschrift"));
     
    Input kto = new LabelInput(ueb.getKonto().getKontonummer());
    kto.setComment(ueb.getKonto().getBezeichnung());
    group.addLabelPair(i18n.tr("Eigenes Konto (Empf�nger)"),kto);

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

    Input empfKto = new LabelInput(ueb.getGegenkontoNummer());
    empfKto.setComment(ueb.getGegenkontoBLZ() + "/" + HBCIProperties.getNameForBank(ueb.getGegenkontoBLZ()));
    group.addLabelPair(i18n.tr("Zu belastendes Konto"),empfKto);

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

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

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

      this.printerList = new SelectInput(services,null);
      ((SelectInput)this.printerList).setAttribute("name");
    }
    else
    {
      printerList = new LabelInput(i18n.tr("Kein Drucker gefunden"));
      getError().setValue(i18n.tr("Bitte speichern Sie den INI-Brief stattdessen."));
    }
   
    printerList.setName(i18n.tr("Drucker"));
    return this.printerList;
View Full Code Here

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

  private LabelInput getError()
  {
    if (this.error != null)
      return this.error;
   
    this.error = new LabelInput("");
    this.error.setColor(Color.ERROR);
    this.error.setName("");
    return this.error;
  }
View Full Code Here

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

  protected void paint(Composite parent) throws Exception
  {
    Container group = new SimpleContainer(parent,false);
    group.addHeadline(i18n.tr("Details des SEPA-Sammelauftrages"));
     
    group.addLabelPair(i18n.tr("Bezeichnung"),new LabelInput(this.st.getBezeichnung()));

    Input kto = new LabelInput(st.getKonto().getIban());
    kto.setComment(st.getKonto().getBezeichnung());
    group.addLabelPair(i18n.tr("Eigenes Konto"),kto);

    LabelInput betrag = new LabelInput(HBCI.DECIMALFORMAT.format(st.getSumme()) + " " + st.getKonto().getWaehrung());
    betrag.setColor(Color.ERROR);
    group.addLabelPair(i18n.tr("Summe"),betrag);

    group.addHeadline(i18n.tr("Enthaltene Buchungen"));
    TablePart buchungen = new SepaSammelTransferBuchungList(this.st,null);
    buchungen.setMulti(false);
View Full Code Here

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

      }
    }

    if (size == 0)
    {
      importerListe = new LabelInput(i18n.tr("Keine Import-Filter verf�gbar"));
      return importerListe;
    }

    Collections.sort(l);
    Imp[] imp = (Imp[]) l.toArray(new Imp[size]);
View Full Code Here

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

  protected void paint(Composite parent) throws Exception
  {
    Container group = new SimpleContainer(parent,false);
    group.addHeadline(i18n.tr("Details des Sammel-Auftrages"));
     
    group.addLabelPair(i18n.tr("Bezeichnung"),new LabelInput(this.st.getBezeichnung()));

    Input kto = new LabelInput(st.getKonto().getKontonummer());
    kto.setComment(st.getKonto().getBezeichnung());
    group.addLabelPair(i18n.tr("Eigenes Konto"),kto);

    LabelInput betrag = new LabelInput(HBCI.DECIMALFORMAT.format(st.getSumme()) + " " + st.getKonto().getWaehrung());
    betrag.setColor(Color.ERROR);
    group.addLabelPair(i18n.tr("Summe"),betrag);

    group.addHeadline(i18n.tr("Enthaltene Buchungen"));
    TablePart buchungen = new SammelTransferBuchungList(this.st,null);
    buchungen.setMulti(false);
View Full Code Here

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

   */
  private LabelInput getInstitut() throws RemoteException
  {
    if (this.institut == null)
    {
      this.institut = new LabelInput("");
      this.institut.setName(i18n.tr("Institut"));
      updateInstitute();
    }
    return this.institut;
  }
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.