Package org.zkoss.zul

Examples of org.zkoss.zul.Timer.addEventListener()


    final Timer timer = new Timer();
    timer.setParent(this);
    timer.setRepeats(true);
    timer.setDelay(2000);
    timer.addEventListener(Events.ON_TIMER, new EventListener() {
      private int i = 0;

      public void onEvent(Event event) throws Exception {
        setMessageEvent(i++ % 3, "hello" + i);
      }
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.