Commit 68ea5833 by Mark Wielaard Committed by Michael Koch

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
parent 880fa238
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> 2004-05-05 Michael Koch <konqueror@gmx.de>
* javax/swing/AbstractButton.java, * javax/swing/AbstractButton.java,
......
...@@ -147,8 +147,8 @@ import javax.swing.text.AttributeSet; ...@@ -147,8 +147,8 @@ import javax.swing.text.AttributeSet;
* *
* </ul> * </ul>
* *
* @author Ronald Veldema (rveldema&064;cs.vu.nl) * @author Ronald Veldema (rveldema@cs.vu.nl)
* @author Graydon Hoare (graydon&064;redhat.com) * @author Graydon Hoare (graydon@redhat.com)
*/ */
public abstract class AbstractButton extends JComponent public abstract class AbstractButton extends JComponent
......
...@@ -203,7 +203,7 @@ public class DefaultBoundedRangeModel ...@@ -203,7 +203,7 @@ public class DefaultBoundedRangeModel
* Changes the current value of this bounded range model. In a * Changes the current value of this bounded range model. In a
* scroll bar visualization of a {@link BoundedRangeModel}, the * scroll bar visualization of a {@link BoundedRangeModel}, the
* <code>value</code> is displayed as the position of the thumb; * <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. * thus moves the thumb to a different position.
*/ */
public void setValue(int value) public void setValue(int value)
......
...@@ -71,7 +71,7 @@ import javax.swing.event.EventListenerList; ...@@ -71,7 +71,7 @@ import javax.swing.event.EventListenerList;
* *
* In all other respects this class is just a container of boolean flags. * 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 public class DefaultButtonModel implements ButtonModel, Serializable
{ {
......
...@@ -47,7 +47,7 @@ import java.util.Vector; ...@@ -47,7 +47,7 @@ import java.util.Vector;
* java.util.Vector}. * java.util.Vector}.
* *
* @author Andrew Selkirk * @author Andrew Selkirk
* @author Graydon Hoare (graydon&064;redhat.com) * @author Graydon Hoare (graydon@redhat.com)
*/ */
public class DefaultListModel extends AbstractListModel public class DefaultListModel extends AbstractListModel
......
...@@ -99,7 +99,7 @@ import javax.swing.plaf.ListUI; ...@@ -99,7 +99,7 @@ import javax.swing.plaf.ListUI;
* <tr><td>visibleRowCount </td><td>list </td><td>no </td></tr> * <tr><td>visibleRowCount </td><td>list </td><td>no </td></tr>
* </table> * </table>
* *
* @author Graydon Hoare (graydon&064;redhat.com) * @author Graydon Hoare (graydon@redhat.com)
*/ */
public class JList extends JComponent implements Accessible, Scrollable public class JList extends JComponent implements Accessible, Scrollable
......
...@@ -411,7 +411,7 @@ public class JSlider extends JComponent implements SwingConstants, Accessible, ...@@ -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 * This method returns a name to identify which look and feel class will be
* the UI delegate for the slider. * the UI delegate for the slider.
* *
* @return The L&F classID. "SliderUI" * @return The Look and Feel classID. "SliderUI"
*/ */
public String getUIClassID() public String getUIClassID()
{ {
......
...@@ -42,7 +42,7 @@ import javax.swing.event.ListDataListener; ...@@ -42,7 +42,7 @@ import javax.swing.event.ListDataListener;
* This is an interface to general list-like data, typically used as the * This is an interface to general list-like data, typically used as the
* model object of a {@link JList} component. * model object of a {@link JList} component.
* *
* @author Graydon Hoare (graydon&064;redhat.com) * @author Graydon Hoare (graydon@redhat.com)
*/ */
public interface ListModel public interface ListModel
{ {
......
...@@ -163,7 +163,7 @@ public class Popup ...@@ -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. * Nothing happens if it is already visible.
*/ */
public void show() public void show()
...@@ -173,7 +173,7 @@ public class Popup ...@@ -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. * screen. Nothing happens if it is currently not visible.
*/ */
public void hide() public void hide()
......
...@@ -59,7 +59,7 @@ import java.lang.reflect.InvocationTargetException; ...@@ -59,7 +59,7 @@ import java.lang.reflect.InvocationTargetException;
* useful when drawing swing components, dispatching events, or calculating * useful when drawing swing components, dispatching events, or calculating
* regions which need painting. * regions which need painting.
* *
* @author Graydon Hoare (graydon&064;redhat.com) * @author Graydon Hoare (graydon@redhat.com)
*/ */
public class SwingUtilities implements SwingConstants public class SwingUtilities implements SwingConstants
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment