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:
parent
880fa23899
commit
68ea5833ec
@ -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,
|
||||
|
@ -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
|
||||
|
@ -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’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)
|
||||
|
@ -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
|
||||
{
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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()
|
||||
{
|
||||
|
@ -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
|
||||
{
|
||||
|
@ -163,7 +163,7 @@ public class Popup
|
||||
|
||||
|
||||
/**
|
||||
* 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()
|
||||
@ -173,7 +173,7 @@ public class Popup
|
||||
|
||||
|
||||
/**
|
||||
* 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()
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user