/[classpath]/classpath/javax/swing/DefaultListSelectionModel.java
ViewVC logotype

Diff of /classpath/javax/swing/DefaultListSelectionModel.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7.2.4 by gnu_andrew, Thu Jan 20 00:37:22 2005 UTC revision 1.7.2.5 by gnu_andrew, Fri May 27 00:01:45 2005 UTC
# Line 516  public class DefaultListSelectionModel i Line 516  public class DefaultListSelectionModel i
516    
517    /**    /**
518     * Fires a {@link ListSelectionEvent} to all the listeners of type {@link     * Fires a {@link ListSelectionEvent} to all the listeners of type {@link
519       * ListSelectionListener} registered with this selection model to
520       * indicate that a series of adjustment has just ended.
521       *
522       * The values of {@link #getMinSelectionIndex} and
523       * {@link getMaxSelectionIndex} are used in the {@link ListSelectionEvent}
524       * that gets fired.
525       *
526       * @param isAdjusting <code>true</code> if this is the final change
527       *     in a series of adjustments, <code>false/code> otherwise
528       */
529      protected void fireValueChanged(boolean isAdjusting)
530      {
531        fireValueChanged(getMinSelectionIndex(), getMaxSelectionIndex(),
532                         isAdjusting);
533      }
534    
535      /**
536       * Fires a {@link ListSelectionEvent} to all the listeners of type {@link
537     * ListSelectionListener} registered with this selection model.     * ListSelectionListener} registered with this selection model.
538     *     *
539     * @param firstIndex The low index of the changed range     * @param firstIndex The low index of the changed range

Legend:
Removed from v.1.7.2.4  
changed lines
  Added in v.1.7.2.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26