Examples of SelectInput


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

  protected void paint(Composite parent) throws Exception
  {
    Container c = new SimpleContainer(parent);
    c.addText(i18n.tr("Bitte w�hlen Sie die zu verwendende SEPA XML-Version."),true);
   
    final SelectInput version = this.getPainVersionInput();
    final LabelInput msg      = this.getMessage();
   
    c.addInput(version);
    c.addInput(msg);
   
    ButtonArea buttons = new ButtonArea();
    this.ok = new Button(i18n.tr("�bernehmen"),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 SEPA XML-Version aus."));
          return;
        }
View Full Code Here

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

   * @return Auswahlfeld mit der PAIN-Version.
   */
  private SelectInput getPainVersionInput()
  {
    List<PainVersion> list = PainVersion.getKnownVersions(type);
    final SelectInput select = new SelectInput(list,PainVersion.findGreatest(list));
    select.setAttribute("file");
    select.setName(i18n.tr("Schema-Version der SEPA XML-Datei"));
    select.addListener(new Listener() {
      public void handleEvent(Event event)
      {
        if (ok != null)
          ok.setEnabled(select.getValue() != null);
      }
    });
    return select;
  }
View Full Code Here

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

   */
  public Input getFilterType() throws RemoteException
  {
    if (filterType != null)
      return filterType;
    filterType = new SelectInput(
      new String[]{"Base64","None"},
      getConfig().getFilterType());
    filterType.setComment(i18n.tr("meist Base64"));
    filterType.setName(i18n.tr("Filter f�r �bertragung"));
    filterType.setMandatory(true);
View Full Code Here

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

    if (textschluessel != null)
      return textschluessel;

    Dauerauftrag t = (Dauerauftrag) getTransfer();

    textschluessel = new SelectInput(TextSchluessel.get(TextSchluessel.SET_DAUER),TextSchluessel.get(t.getTextSchluessel()));
   
    if (t.isActive())
      textschluessel.setEnabled(getBPD().getBoolean("keyeditable",true));
   
    return textschluessel;
View Full Code Here

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

   
    List<Typ> list = new ArrayList<Typ>();
    list.add(new Typ(false,false));
    list.add(new Typ(true,false));
    list.add(new Typ(false,true));
    this.typ = new SelectInput(list,new Typ(u.isTerminUeberweisung(),u.isUmbuchung()));
    this.typ.setName(i18n.tr("Auftragstyp"));
    this.typ.setAttribute("name");
    this.typ.setEnabled(!u.ausgefuehrt());
    this.typ.addListener(new Listener() {
      public void handleEvent(Event event)
View Full Code Here

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

       
        // Spalten noch zuordnen
        List<Column> columns = new ArrayList<Column>();
        for (int i=0;i<selects.size();++i)
        {
          SelectInput input = selects.get(i);
          Column c = (Column) input.getValue();
          if (c == null)
            continue; // Spalte nicht zugeordnet
         
          // Spalten konnen mehrfach zugeordnet werden.
          // Daher verwenden wir einen Clone. Andernfalls wuerden
View Full Code Here

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

          value = current.get(i);
          if (value.length() > 30)
            value = value.substring(0,30) + "...";
        } catch (Exception e) {} // Spalte gibts in der Zeile nicht
       
        final SelectInput s = new SelectInput(columns,getColumn(columns,i));
        s.setName((i+1) + ". " + value);
        s.setPleaseChoose("<" + i18n.tr("Nicht zugeordnet") + ">");
        selects.add(s);

        container.addInput(s);
      }
      container.update();
View Full Code Here

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

   */
  private SelectInput getFileEncoding()
  {
    if (this.encoding == null)
    {
      this.encoding = new SelectInput(CHARSETS,this.getProfile().getFileEncoding());
      this.encoding.setName(i18n.tr("Zeichensatz"));
      this.encoding.setComment(i18n.tr("Zeichensatz der CSV-Datei"));
      this.encoding.setMandatory(true);
      this.encoding.setEditable(true);
    }
View Full Code Here

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

      {
        Logger.error("unable to get previous tan medias",e);
      }
    }
   
    this.media = new SelectInput(list,null);
    this.media.setEditable(true);
    return this.media;
  }
View Full Code Here

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

          list.add(rs.getString(1));
        return list;
      }
    });

    this.kategorie = new SelectInput(list,this.getAddress().getKategorie());
    this.kategorie.setName(i18n.tr("Gruppe"));
    this.kategorie.setEditable(true);
    this.kategorie.setEnabled(isHibiscusAdresse());
    return this.kategorie;
  }
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.