Package org.zkoss.zul.event

Examples of org.zkoss.zul.event.ListDataEvent


   * (thru {@link #addListDataListener}.
   *
   * <p>Note: you can invoke this method only in an event listener.
   */
  protected void fireEvent(int type, int index0, int index1) {
    final ListDataEvent evt = new ListDataEvent(this, type, index0, index1);
    for (Iterator it = _listeners.iterator(); it.hasNext();)
      ((ListDataListener)it.next()).onChange(evt);
  }
View Full Code Here

TOP

Related Classes of org.zkoss.zul.event.ListDataEvent

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.