+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,
*
* </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
* 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’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)
*
* 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
{
* java.util.Vector}.
*
* @author Andrew Selkirk
- * @author Graydon Hoare (graydon&064;redhat.com)
+ * @author Graydon Hoare (graydon@redhat.com)
*/
public class DefaultListModel extends AbstractListModel
* <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
* 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()
{
* 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
{
/**
- * Displays the popup’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()
/**
- * Removes the popup’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()
* 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
{