classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: API doc fixes for DefaultListSelectionModel


From: David Gilbert
Subject: [cp-patches] FYI: API doc fixes for DefaultListSelectionModel
Date: Thu, 21 Jul 2005 10:19:41 +0000
User-agent: Mozilla Thunderbird 1.0.2 (X11/20050426)

I committed this patch:

2005-07-20  David Gilbert  <address@hidden>

        * javax/swing/DefaultListSelectionModel.java: API doc fixes.

Regards,

Dave Gilbert

Index: javax/swing/DefaultListSelectionModel.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/javax/swing/DefaultListSelectionModel.java,v
retrieving revision 1.19
diff -u -r1.19 DefaultListSelectionModel.java
--- javax/swing/DefaultListSelectionModel.java  7 Jul 2005 20:47:13 -0000       
1.19
+++ javax/swing/DefaultListSelectionModel.java  21 Jul 2005 09:13:10 -0000
@@ -1,5 +1,5 @@
 /* DefaultListSelectionModel.java --
-   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -48,7 +48,7 @@
 
 /**
  * <p>This class provides a default implementation of address@hidden
- * ListSelectioModel}, which is used by address@hidden javax.swing.JList} and
+ * ListSelectionModel}, which is used by address@hidden javax.swing.JList} and
  * similar classes to manage the selection status of a number of data
  * elements. </p>
  *
@@ -104,7 +104,7 @@
    * controls the range of indices provided in any address@hidden
    * ListSelectionEvent} fired by the selectionModel. Let
    * <code>[A,L]</code> be the range of indices between address@hidden
-   * anchorSelectionIndex} and address@hidden leadSelectionIndex} inclusive, 
and
+   * #anchorSelectionIndex} and address@hidden #leadSelectionIndex} inclusive, 
and
    * let <code>[i0,i1]</code> be the range of indices changed in a given
    * call which generates a address@hidden ListSelectionEvent}. Then when this
    * property is <code>true</code>, the address@hidden ListSelectionEvent} 
contains
@@ -232,7 +232,7 @@
    * which changed selection status between the beginning and end of the
    * method.</p>
    * 
-   * @param anchorIndex The new property value
+   * @param leadIndex The new property value
    *
    * @see #getAnchorSelectionIndex
    */
@@ -292,9 +292,9 @@
   /**
    * Sets the value of the address@hidden #leadAnchorNotificationEnabled} 
property.
    * 
-   * @param flag The new property value
+   * @param l The new property value
    *
-   * @see #getLeadAnchorNotificationEnabled
+   * @see #isLeadAnchorNotificationEnabled
    */
   public void setLeadAnchorNotificationEnabled(boolean l)
   {
@@ -588,7 +588,7 @@
    * indicate that a series of adjustment has just ended.
    *
    * The values of address@hidden #getMinSelectionIndex} and
-   * address@hidden getMaxSelectionIndex} are used in the address@hidden 
ListSelectionEvent}
+   * address@hidden #getMaxSelectionIndex} are used in the address@hidden 
ListSelectionEvent}
    * that gets fired.
    *
    * @param isAdjusting <code>true</code> if this is the final change
@@ -636,8 +636,8 @@
    *
    * @param listener The listener to add
    *
-   * @see removeListSelectionListener
-   * @see getListSelectionListeners
+   * @see #removeListSelectionListener
+   * @see #getListSelectionListeners
    */
   public void addListSelectionListener(ListSelectionListener listener)
   {
@@ -649,8 +649,8 @@
    *
    * @param listener The listener to remove
    *
-   * @see addListSelectionListener
-   * @see getListSelectionListeners
+   * @see #addListSelectionListener
+   * @see #getListSelectionListeners
    */
   public void removeListSelectionListener(ListSelectionListener listener)
   {
@@ -664,7 +664,7 @@
    *
    * @return The array
    *
-   * @see getListSelectionListener
+   * @see #getListSelectionListeners
    * @since 1.3
    */
   public EventListener[] getListeners(Class listenerType)
@@ -677,9 +677,9 @@
    *
    * @return the array
    *
-   * @see addListSelectionListener
-   * @see removeListSelectionListener
-   * @see getListeners
+   * @see #addListSelectionListener
+   * @see #removeListSelectionListener
+   * @see #getListeners
    * @since 1.4
    */
   public ListSelectionListener[] getListSelectionListeners()

reply via email to

[Prev in Thread] Current Thread [Next in Thread]