Examples of SelectInput


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

      ArrayList list = new ArrayList();
      list.add(new UmsatzTypObject(UmsatzTyp.TYP_EGAL));
      list.add(new UmsatzTypObject(UmsatzTyp.TYP_EINNAHME));
      list.add(new UmsatzTypObject(UmsatzTyp.TYP_AUSGABE));
     
      this.art = new SelectInput(list,new UmsatzTypObject(getUmsatzTyp().getTyp()));
    }
    return this.art;
  }
View Full Code Here

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

  public SelectInput getIntervall() throws RemoteException
  {
    if (intervall != null)
      return intervall;

    intervall = new SelectInput(new String[]{this.pleaseChoose,"1","2","3","4","5","6","12"},""+getTurnus().getIntervall());

    if (getTurnus().getZeiteinheit() == Turnus.ZEITEINHEIT_MONATLICH)
      intervall.setComment(i18n.tr("Monate"));
    else
      intervall.setComment(i18n.tr("Wochen"));
View Full Code Here

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

    GenericObject[] values = new GenericObject[]
    {
      new Zeiteinheit(Turnus.ZEITEINHEIT_MONATLICH),
      new Zeiteinheit(Turnus.ZEITEINHEIT_WOECHENTLICH)
    };
    zeiteinheit = new SelectInput(PseudoIterator.fromArray(values),new Zeiteinheit(getTurnus().getZeiteinheit()));
    zeiteinheit.addListener(new TagListener());
    return zeiteinheit;
  }
View Full Code Here

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

    for (int i=1;i<31;++i)
    {
      values[i] = ""+i;
    }
    values[31] = this.lastOfMonth;
    tagMonatlich = new SelectInput(values,""+getTurnus().getTag());
    return tagMonatlich;
  }
View Full Code Here

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

    values[0] = new Tag(-1);
    for (int i=1;i<8;++i)
    {
      values[i] = new Tag(i);
    }
    tagWoechentlich = new SelectInput(PseudoIterator.fromArray(values),new Tag(getTurnus().getTag()));
    new TagListener().handleEvent(null); // einmal ausloesen, um die readOnly-Flags zu setzen
    return tagWoechentlich;
  }
View Full Code Here

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

    HBCIDBService service = (HBCIDBService) Settings.getDBService();
    DBIterator list = this.transfer.getList();
    list.addFilter("ausgefuehrt = 0");
    list.setOrder("ORDER BY " + service.getSQLTimestamp("termin") + " DESC, id DESC");
    this.existing = new SelectInput(list,null);
    this.existing.setName(i18n.tr("Existierende Auftr�ge"));
    this.existing.setPleaseChoose(i18n.tr("Bitte w�hlen..."));
    this.existing.setEnabled(false);

    // Wenn wir keine existierenden Auftraege haben, koennen wir das gleich komplett deaktivieren
View Full Code Here

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

   */
  public SelectInput getTextSchluessel() throws RemoteException
  {
    if (this.textschluessel != null)
      return this.textschluessel;
    this.textschluessel = new SelectInput(TextSchluessel.get(TextSchluessel.SET_SAMMELLAST),TextSchluessel.get(((SammelTransferBuchung)getBuchung()).getTextSchluessel()));
    this.textschluessel.setEnabled(!getBuchung().getSammelTransfer().ausgefuehrt());
    return this.textschluessel;
  }
View Full Code Here

Examples of org.metaworks.inputter.SelectInput

    FieldDescriptor fd;

    type.setName("Create and add variables corresponding child process definition?");
   
    fd = type.getFieldDescriptor("VariableCreationOption");
    fd.setInputter(new SelectInput(
        new Object[]{
            "Don't create variables",
            "Create if not exists",
            "Create with prefix"
        },
View Full Code Here

Examples of org.metaworks.inputter.SelectInput

      )
    );

    fd = type.getFieldDescriptor("JmsProvider")
    fd.setInputter(
      new SelectInput(
        new Object[]{"JBossMQ", "SonicMQ", "ActiveMQ"}
      )
    );
  }
View Full Code Here

Examples of org.metaworks.inputter.SelectInput

  }
 
  public static void metaworksCallback_changeMetadata(Type type){
    FieldDescriptor fd = type.getFieldDescriptor("InputType");
    fd.setDisplayName("Input Number Type");
    fd.setInputter(new SelectInput(
        new Object[]{
          "Long",
          "Double"
        },
        new Object[]{ 'L', 'D' }
      ));

    fd = type.getFieldDescriptor("ToType");
    fd.setDisplayName("Output Format");
    fd.setInputter(new SelectInput(
        new Object[]{
            "Integer",
            "Currency",
            "Number",
            "Percent"
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.