Examples of UIModel


Examples of com.nilhcem.fakesmtp.model.UIModel

   * @param arg optional parameters (not used).
   */
  @Override
  public void update(Observable o, Object arg) {
    if (o instanceof MailSaver) {
      UIModel model = UIModel.INSTANCE;
      int countMsg = model.getNbMessageReceived() + 1;
      model.setNbMessageReceived(countMsg);
      nbReceived.setText(Integer.toString(countMsg));
    } else if (o instanceof ClearAllButton) {
      UIModel.INSTANCE.setNbMessageReceived(0);
      nbReceived.setText("0");
    }
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.