This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: javax.swing - fixes for gjdoc


Hi list,


I just commited the attached patch to merge fixes by Mark Wielaard from 
GNU classpath.


Michael


2004-05-05  Mark Wielaard  <mark@klomp.org>

	* javax/swing/AbstractButton.java: Replace special HTML entities with
	ASCII equivalent.
	* javax/swing/DefaultBoundedRangeModel.java: Likewise.
	* javax/swing/DefaultButtonModel.java: Likewise.
	* javax/swing/DefaultListModel.java: Likewise.
	* javax/swing/JList.java: Likewise.
	* javax/swing/JSlider.java: Likewise.
	* javax/swing/ListModel.java: Likewise.
	* javax/swing/Popup.java: Likewise.
	* javax/swing/SwingUtilities.java: Likewise.

Index: javax/swing/AbstractButton.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/AbstractButton.java,v
retrieving revision 1.7
diff -u -r1.7 AbstractButton.java
--- javax/swing/AbstractButton.java	5 May 2004 09:16:15 -0000	1.7
+++ javax/swing/AbstractButton.java	5 May 2004 09:51:32 -0000
@@ -147,8 +147,8 @@
  *
  * </ul>
  *
- * @author Ronald Veldema (rveldema&064;cs.vu.nl)
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Ronald Veldema (rveldema@cs.vu.nl)
+ * @author Graydon Hoare (graydon@redhat.com)
  */
 
 public abstract class AbstractButton extends JComponent
Index: javax/swing/DefaultBoundedRangeModel.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/DefaultBoundedRangeModel.java,v
retrieving revision 1.5
diff -u -r1.5 DefaultBoundedRangeModel.java
--- javax/swing/DefaultBoundedRangeModel.java	7 Jan 2004 14:42:03 -0000	1.5
+++ javax/swing/DefaultBoundedRangeModel.java	5 May 2004 09:51:33 -0000
@@ -203,7 +203,7 @@
    * Changes the current value of this bounded range model. In a
    * scroll bar visualization of a {@link BoundedRangeModel}, the
    * <code>value</code> is displayed as the position of the thumb;
-   * changing the <code>value</code> of a scroll bar&#x2019;s model
+   * changing the <code>value</code> of a scroll bar's model
    * thus moves the thumb to a different position.
    */
   public void setValue(int value)
Index: javax/swing/DefaultButtonModel.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/DefaultButtonModel.java,v
retrieving revision 1.6
diff -u -r1.6 DefaultButtonModel.java
--- javax/swing/DefaultButtonModel.java	5 May 2004 09:16:15 -0000	1.6
+++ javax/swing/DefaultButtonModel.java	5 May 2004 09:51:33 -0000
@@ -71,7 +71,7 @@
  *
  * In all other respects this class is just a container of boolean flags.
  *
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Graydon Hoare (graydon@redhat.com)
  */
 public class DefaultButtonModel implements ButtonModel, Serializable
 {
Index: javax/swing/DefaultListModel.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/DefaultListModel.java,v
retrieving revision 1.5
diff -u -r1.5 DefaultListModel.java
--- javax/swing/DefaultListModel.java	5 May 2004 09:16:15 -0000	1.5
+++ javax/swing/DefaultListModel.java	5 May 2004 09:51:33 -0000
@@ -47,7 +47,7 @@
  * java.util.Vector}.
  *
  * @author Andrew Selkirk
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Graydon Hoare (graydon@redhat.com)
  */
 
 public class DefaultListModel extends AbstractListModel
Index: javax/swing/JList.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/JList.java,v
retrieving revision 1.6
diff -u -r1.6 JList.java
--- javax/swing/JList.java	19 Mar 2004 20:42:38 -0000	1.6
+++ javax/swing/JList.java	5 May 2004 09:51:33 -0000
@@ -99,7 +99,7 @@
  * <tr><td>visibleRowCount                </td><td>list     </td><td>no    </td></tr>
  * </table> 
  *
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Graydon Hoare (graydon@redhat.com)
  */
 
 public class JList extends JComponent implements Accessible, Scrollable
Index: javax/swing/JSlider.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/JSlider.java,v
retrieving revision 1.7
diff -u -r1.7 JSlider.java
--- javax/swing/JSlider.java	5 May 2004 09:16:15 -0000	1.7
+++ javax/swing/JSlider.java	5 May 2004 09:51:33 -0000
@@ -411,7 +411,7 @@
    * This method returns a name to identify which look and feel class will be
    * the UI delegate for the slider.
    *
-   * @return The L&F classID. "SliderUI"
+   * @return The Look and Feel classID. "SliderUI"
    */
   public String getUIClassID()
   {
Index: javax/swing/ListModel.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/ListModel.java,v
retrieving revision 1.3
diff -u -r1.3 ListModel.java
--- javax/swing/ListModel.java	17 Mar 2004 21:28:59 -0000	1.3
+++ javax/swing/ListModel.java	5 May 2004 09:51:34 -0000
@@ -42,7 +42,7 @@
  * This is an interface to general list-like data, typically used as the
  * model object of a {@link JList} component.
  *
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Graydon Hoare (graydon@redhat.com)
  */
 public interface ListModel
 {
Index: javax/swing/Popup.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/Popup.java,v
retrieving revision 1.1
diff -u -r1.1 Popup.java
--- javax/swing/Popup.java	27 Jun 2003 12:41:52 -0000	1.1
+++ javax/swing/Popup.java	5 May 2004 09:51:34 -0000
@@ -163,7 +163,7 @@
 
 
     /**
-     * Displays the popup&#x2019;s <code>JWindow</code> on the screen.
+     * Displays the popup's <code>JWindow</code> on the screen.
      * Nothing happens if it is already visible.
      */
     public void show()
@@ -173,7 +173,7 @@
     
     
     /**
-     * Removes the popup&#x2019;s <code>JWindow</code> from the
+     * Removes the popup's <code>JWindow</code> from the
      * screen.  Nothing happens if it is currently not visible.
      */
     public void hide()
Index: javax/swing/SwingUtilities.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/SwingUtilities.java,v
retrieving revision 1.8
diff -u -r1.8 SwingUtilities.java
--- javax/swing/SwingUtilities.java	5 May 2004 09:16:15 -0000	1.8
+++ javax/swing/SwingUtilities.java	5 May 2004 09:51:34 -0000
@@ -59,7 +59,7 @@
  * useful when drawing swing components, dispatching events, or calculating
  * regions which need painting.
  *
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Graydon Hoare (graydon@redhat.com)
  */
 public class SwingUtilities implements SwingConstants
 {

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]