commit-classpath
[Top][All Lists]
Advanced

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

FYI: Cleanup HTML documentation for javax.swing


From: Mark Wielaard
Subject: FYI: Cleanup HTML documentation for javax.swing
Date: Sat, 01 May 2004 19:38:59 +0200

Hi,

gjdoc didn't like some HTML entities which were embedded in some of the
javax.swing java source files. I have replaced them with similar normal
characters.

2004-05-01  Mark Wielaard  <address@hidden>
  
       * 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.

This enables us again to generate full API docs for GNU Classpath.
Committed.

Cheers,

Mark
Index: javax/swing/AbstractButton.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/AbstractButton.java,v
retrieving revision 1.13
diff -u -r1.13 AbstractButton.java
--- javax/swing/AbstractButton.java     29 Apr 2004 07:00:34 -0000      1.13
+++ javax/swing/AbstractButton.java     1 May 2004 17:33:53 -0000
@@ -147,8 +147,8 @@
  *
  * </ul>
  *
- * @author Ronald Veldema (rveldema&064;cs.vu.nl)
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Ronald Veldema (address@hidden)
+ * @author Graydon Hoare (address@hidden)
  */
 
 public abstract class AbstractButton extends JComponent
Index: javax/swing/DefaultBoundedRangeModel.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/javax/swing/DefaultBoundedRangeModel.java,v
retrieving revision 1.4
diff -u -r1.4 DefaultBoundedRangeModel.java
--- javax/swing/DefaultBoundedRangeModel.java   6 Jan 2004 14:50:52 -0000       
1.4
+++ javax/swing/DefaultBoundedRangeModel.java   1 May 2004 17:33:53 -0000
@@ -203,7 +203,7 @@
    * Changes the current value of this bounded range model. In a
    * scroll bar visualization of a address@hidden 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: /cvsroot/classpath/classpath/javax/swing/DefaultButtonModel.java,v
retrieving revision 1.8
diff -u -r1.8 DefaultButtonModel.java
--- javax/swing/DefaultButtonModel.java 29 Apr 2004 07:00:34 -0000      1.8
+++ javax/swing/DefaultButtonModel.java 1 May 2004 17:33:53 -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 (address@hidden)
  */
 public class DefaultButtonModel implements ButtonModel, Serializable
 {
Index: javax/swing/DefaultListModel.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/DefaultListModel.java,v
retrieving revision 1.7
diff -u -r1.7 DefaultListModel.java
--- javax/swing/DefaultListModel.java   29 Apr 2004 07:00:34 -0000      1.7
+++ javax/swing/DefaultListModel.java   1 May 2004 17:33:53 -0000
@@ -47,7 +47,7 @@
  * java.util.Vector}.
  *
  * @author Andrew Selkirk
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Graydon Hoare (address@hidden)
  */
 
 public class DefaultListModel extends AbstractListModel
Index: javax/swing/JList.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/JList.java,v
retrieving revision 1.12
diff -u -r1.12 JList.java
--- javax/swing/JList.java      19 Mar 2004 21:22:24 -0000      1.12
+++ javax/swing/JList.java      1 May 2004 17:33:53 -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 (address@hidden)
  */
 
 public class JList extends JComponent implements Accessible, Scrollable
Index: javax/swing/JSlider.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/JSlider.java,v
retrieving revision 1.7
diff -u -r1.7 JSlider.java
--- javax/swing/JSlider.java    29 Apr 2004 07:00:34 -0000      1.7
+++ javax/swing/JSlider.java    1 May 2004 17:33:54 -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: /cvsroot/classpath/classpath/javax/swing/ListModel.java,v
retrieving revision 1.4
diff -u -r1.4 ListModel.java
--- javax/swing/ListModel.java  19 Mar 2004 21:22:24 -0000      1.4
+++ javax/swing/ListModel.java  1 May 2004 17:33:54 -0000
@@ -42,7 +42,7 @@
  * This is an interface to general list-like data, typically used as the
  * model object of a address@hidden JList} component.
  *
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Graydon Hoare (address@hidden)
  */
 public interface ListModel
 {
Index: javax/swing/Popup.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/Popup.java,v
retrieving revision 1.1
diff -u -r1.1 Popup.java
--- javax/swing/Popup.java      25 Jun 2003 12:40:11 -0000      1.1
+++ javax/swing/Popup.java      1 May 2004 17:33:54 -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: /cvsroot/classpath/classpath/javax/swing/SwingUtilities.java,v
retrieving revision 1.10
diff -u -r1.10 SwingUtilities.java
--- javax/swing/SwingUtilities.java     29 Apr 2004 07:00:34 -0000      1.10
+++ javax/swing/SwingUtilities.java     1 May 2004 17:33:54 -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 (address@hidden)
  */
 public class SwingUtilities implements SwingConstants
 {

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

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