Package de.willuhn.jameica.gui.util

Examples of de.willuhn.jameica.gui.util.ScrolledContainer.update()


    this.add = new Button("  +  ",new Action() {
      public void handleAction(Object context) throws ApplicationException
      {
        int size = fields.size();
        createLine(container,null,size,readonly);
        container.update();
        add.setEnabled(!readonly && size+3 < maxusage);
      }
    });
    this.add.setEnabled(!readonly && size+3 <= maxusage);
   
View Full Code Here


    buttons.paint(parent);
    //
    ////////////////////////////////////////////////////////////////////////////

    // einmal initial die Groesse neu berechnen
    container.update();
  }
 
  /**
   * Erzeugt eine neue Zeile Verwendungszweck.
   * @param container der Container, zu dem das Feld hinzugefuegt werden soll.
View Full Code Here

        s.setPleaseChoose("<" + i18n.tr("Nicht zugeordnet") + ">");
        selects.add(s);

        container.addInput(s);
      }
      container.update();
     
      this.parent.layout(true);
      this.getError().setValue("");
    }
    catch (Exception e)
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.