AbstractButton.java: Replace special HTML entities with ASCII equivalent.

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.

From-SVN: r81518
This commit is contained in:
Mark Wielaard 2004-05-05 09:53:50 +00:00 committed by Michael Koch
parent 880fa23899
commit 68ea5833ec
10 changed files with 24 additions and 11 deletions

View File

@ -1,3 +1,16 @@
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.
2004-05-05 Michael Koch <konqueror@gmx.de>
* javax/swing/AbstractButton.java,

View File

@ -147,8 +147,8 @@ import javax.swing.text.AttributeSet;
*
* </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

View File

@ -203,7 +203,7 @@ public class DefaultBoundedRangeModel
* 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)

View File

@ -71,7 +71,7 @@ import javax.swing.event.EventListenerList;
*
* 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
{

View File

@ -47,7 +47,7 @@ import java.util.Vector;
* java.util.Vector}.
*
* @author Andrew Selkirk
* @author Graydon Hoare (graydon&064;redhat.com)
* @author Graydon Hoare (graydon@redhat.com)
*/
public class DefaultListModel extends AbstractListModel

View File

@ -99,7 +99,7 @@ import javax.swing.plaf.ListUI;
* <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

View File

@ -411,7 +411,7 @@ public class JSlider extends JComponent implements SwingConstants, Accessible,
* 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()
{

View File

@ -42,7 +42,7 @@ import javax.swing.event.ListDataListener;
* 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
{

View File

@ -163,7 +163,7 @@ public class Popup
/**
* 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 @@ public class Popup
/**
* 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()

View File

@ -59,7 +59,7 @@ import java.lang.reflect.InvocationTargetException;
* 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
{