Package de.willuhn.jameica.gui.input

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


  {
    if (this.tagAuswahl != null)
      return this.tagAuswahl;

    // BUGZILLA 337
    this.tagAuswahl = new SpinnerInput(1,31,this.stichtag);
    this.tagAuswahl.setComment(i18n.tr(". Tag des Monats"));
    this.tagAuswahl.setName(i18n.tr("Stichtag"));
    this.tagAuswahl.setValue(settings.getInt("stichtag",1));
    this.tagAuswahl.addListener(new Listener() {
     
View Full Code Here


  {
    if (this.monatAuswahl != null)
      return this.monatAuswahl;

    // BUGZILLA 1233
    this.monatAuswahl = new SpinnerInput(1,12,this.monate);
    this.monatAuswahl.setComment(i18n.tr("Anzahl der Monate pro Periode"));
    this.monatAuswahl.setName(i18n.tr("Monate"));
    this.monatAuswahl.setValue(settings.getInt("monate",1));
    this.monatAuswahl.addListener(new Listener() {
     
View Full Code Here

   */
  private SpinnerInput getSkipLines()
  {
    if (this.skipLines == null)
    {
      this.skipLines = new SpinnerInput(0,10,this.getProfile().getSkipLines());
      this.skipLines.setName(i18n.tr("Zeilen �berspringen"));
      this.skipLines.setComment(i18n.tr("Zu �berspringende Zeilen am Datei-Anfang"));
      this.skipLines.setMandatory(false);
    }
    return this.skipLines;
View Full Code Here

  public Input getCTNumber()
  {
    if (this.ctNumber != null)
      return this.ctNumber;

    this.ctNumber = new SpinnerInput(0,4,getConfig().getCTNumber());
    this.ctNumber.setEnabled(!isPCSC());
    this.ctNumber.setName(i18n.tr("Index des Lesers"));
    this.ctNumber.setComment(i18n.tr("meist 0"));
    return this.ctNumber;
  }
View Full Code Here

  public Input getEntryIndex()
  {
    if (this.entryIndex != null)
      return this.entryIndex;

    this.entryIndex = new SpinnerInput(1,4,getConfig().getEntryIndex());
    this.entryIndex.setName(i18n.tr("Index des HBCI-Zugangs"));
    this.entryIndex.setComment(i18n.tr("meist 1"));
    return this.entryIndex;
  }
View Full Code Here

TOP

Related Classes of de.willuhn.jameica.gui.input.SpinnerInput

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.