Package charvax.swing.event

Examples of charvax.swing.event.ListSelectionEvent


    /** Notify the listeners that the selection has changed.
     * @param firstindex_ The first index in the interval
     * @param lastindex_ The last index in the interval.
     */
    protected void fireValueChanged(int firstindex_, int lastindex_) {
  ListSelectionEvent event =
      new ListSelectionEvent(this, firstindex_, lastindex_, false);

  Iterator<ListSelectionListener> iter = _listeners.iterator();
  while (iter.hasNext()) {
      ListSelectionListener l = (ListSelectionListener) iter.next();

View Full Code Here

TOP

Related Classes of charvax.swing.event.ListSelectionEvent

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.