diff options
Diffstat (limited to 'libjava/javax/swing')
| -rw-r--r-- | libjava/javax/swing/DefaultBoundedRangeModel.java | 6 | ||||
| -rw-r--r-- | libjava/javax/swing/JComponent.java | 2 | ||||
| -rw-r--r-- | libjava/javax/swing/JList.java | 4 | ||||
| -rw-r--r-- | libjava/javax/swing/JProgressBar.java | 2 | ||||
| -rw-r--r-- | libjava/javax/swing/JRadioButton.java | 8 | ||||
| -rw-r--r-- | libjava/javax/swing/JTextArea.java | 6 | ||||
| -rw-r--r-- | libjava/javax/swing/JTextField.java | 1 | ||||
| -rw-r--r-- | libjava/javax/swing/JToggleButton.java | 9 | ||||
| -rw-r--r-- | libjava/javax/swing/JTree.java | 4 | ||||
| -rw-r--r-- | libjava/javax/swing/SpinnerListModel.java | 4 | ||||
| -rw-r--r-- | libjava/javax/swing/event/EventListenerList.java | 6 | ||||
| -rw-r--r-- | libjava/javax/swing/text/JTextComponent.java | 8 | ||||
| -rw-r--r-- | libjava/javax/swing/text/StringContent.java | 6 | ||||
| -rw-r--r-- | libjava/javax/swing/text/Utilities.java | 4 | ||||
| -rw-r--r-- | libjava/javax/swing/undo/UndoManager.java | 4 | ||||
| -rw-r--r-- | libjava/javax/swing/undo/UndoableEditSupport.java | 6 |
16 files changed, 39 insertions, 41 deletions
diff --git a/libjava/javax/swing/DefaultBoundedRangeModel.java b/libjava/javax/swing/DefaultBoundedRangeModel.java index 65bd30c84e1..9c1962379a8 100644 --- a/libjava/javax/swing/DefaultBoundedRangeModel.java +++ b/libjava/javax/swing/DefaultBoundedRangeModel.java @@ -1,6 +1,6 @@ /* DefaultBoundedRangeModel.java -- Default implementation of BoundedRangeModel. - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -49,8 +49,8 @@ import javax.swing.event.EventListenerList; /** * A default implementation of <code>BoundedRangeModel</code>. * - * @author <a href="mailto:aselkirk@sympatico.ca">Andrew Selkirk</a> - * @author <a href="mailto:brawer@dandelis.ch">Sascha Brawer</a> + * @author Andrew Selkirk (aselkirk@sympatico.ca) + * @author Sascha Brawer (brawer@dandelis.ch) */ public class DefaultBoundedRangeModel implements BoundedRangeModel, Serializable diff --git a/libjava/javax/swing/JComponent.java b/libjava/javax/swing/JComponent.java index 8f2bc9502f9..ad7603cf76a 100644 --- a/libjava/javax/swing/JComponent.java +++ b/libjava/javax/swing/JComponent.java @@ -1303,7 +1303,7 @@ public abstract class JComponent extends Container implements Serializable } /** - * Return <code>true<code> if you wish this component to manage its own + * Return <code>true</code> if you wish this component to manage its own * focus. In particular: if you want this component to be sent * <code>TAB</code> and <code>SHIFT+TAB</code> key events, and to not * have its children considered as focus transfer targets. If diff --git a/libjava/javax/swing/JList.java b/libjava/javax/swing/JList.java index f26fa8a0b2c..adb72892450 100644 --- a/libjava/javax/swing/JList.java +++ b/libjava/javax/swing/JList.java @@ -1297,7 +1297,7 @@ public class JList extends JComponent implements Accessible, Scrollable * Returns the layout orientation. * * @return the orientation, one of <code>JList.VERTICAL</code>, - * </code>JList.VERTICAL_WRAP</code> and <code>JList.HORIZONTAL_WRAP</code> + * <code>JList.VERTICAL_WRAP</code> and <code>JList.HORIZONTAL_WRAP</code> * * @since 1.4 */ @@ -1310,7 +1310,7 @@ public class JList extends JComponent implements Accessible, Scrollable * Sets the layout orientation. * * @param orientation the orientation to set, one of <code>JList.VERTICAL</code>, - * </code>JList.VERTICAL_WRAP</code> and <code>JList.HORIZONTAL_WRAP</code> + * <code>JList.VERTICAL_WRAP</code> and <code>JList.HORIZONTAL_WRAP</code> * * @since 1.4 */ diff --git a/libjava/javax/swing/JProgressBar.java b/libjava/javax/swing/JProgressBar.java index cf9334904d5..105f7c49073 100644 --- a/libjava/javax/swing/JProgressBar.java +++ b/libjava/javax/swing/JProgressBar.java @@ -60,7 +60,7 @@ import javax.swing.plaf.ProgressBarUI; * </p> * * <table> - * <tr><th> Property </td><th> Stored in </td><th> Bound? </td></tr> + * <tr><th> Property </th><th> Stored in </th><th> Bound? </th></tr> * <tr><td> borderPainted </td><td> progressBar </td><td> yes </td></tr> * <tr><td> changeListeners </td><td> progressBar </td><td> no </td></tr> * <tr><td> indeterminate </td><td> progressBar </td><td> yes </td></tr> diff --git a/libjava/javax/swing/JRadioButton.java b/libjava/javax/swing/JRadioButton.java index fc06d15a114..da8c8395a24 100644 --- a/libjava/javax/swing/JRadioButton.java +++ b/libjava/javax/swing/JRadioButton.java @@ -1,5 +1,5 @@ /* JRadioButton.java -- - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -59,9 +59,9 @@ import javax.swing.plaf.ButtonUI; * within the same panel, possibly with an appropriate border to denote * the connection between the components. * - * @author Michael Koch <konqueror@gmx.de> - * @author Graydon Hoare <graydon@redhat.com> - * @author Andrew John Hughes <gnu_andrew@member.fsf.org> + * @author Michael Koch (konqueror@gmx.de) + * @author Graydon Hoare (graydon@redhat.com) + * @author Andrew John Hughes (gnu_andrew@member.fsf.org) * @see JToggleButton * @see ButtonGroup * @since 1.2 diff --git a/libjava/javax/swing/JTextArea.java b/libjava/javax/swing/JTextArea.java index 2561775286b..3510e6dead6 100644 --- a/libjava/javax/swing/JTextArea.java +++ b/libjava/javax/swing/JTextArea.java @@ -1,5 +1,5 @@ /* JTextArea.java -- - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -74,8 +74,8 @@ import javax.swing.text.PlainDocument; * are used in calculating the preferred size of the scroll pane's * view port. * - * @author Michael Koch <konqueror@gmx.de> - * @author Andrew John Hughes <gnu_andrew@member.fsf.org> + * @author Michael Koch (konqueror@gmx.de) + * @author Andrew John Hughes (gnu_andrew@member.fsf.org) * @see java.awt.TextArea * @see javax.swing.JTextComponent * @see javax.swing.JTextField diff --git a/libjava/javax/swing/JTextField.java b/libjava/javax/swing/JTextField.java index d87655bc3fa..e7c65d924eb 100644 --- a/libjava/javax/swing/JTextField.java +++ b/libjava/javax/swing/JTextField.java @@ -47,7 +47,6 @@ import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import javax.accessibility.AccessibleStateSet; -import javax.swing.Action; import javax.swing.text.Document; import javax.swing.text.JTextComponent; import javax.swing.text.PlainDocument; diff --git a/libjava/javax/swing/JToggleButton.java b/libjava/javax/swing/JToggleButton.java index 8a38d48d3aa..41eab07b53c 100644 --- a/libjava/javax/swing/JToggleButton.java +++ b/libjava/javax/swing/JToggleButton.java @@ -1,5 +1,5 @@ /* JToggleButton.java -- - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -53,16 +53,15 @@ import javax.swing.plaf.ButtonUI; * for the implementations of radio buttons (<code>JRadioButton</code>) * and check boxes (<code>JCheckBox</code>). * - * @author Michael Koch <konqueror@gmx.de> - * @author Graydon Hoare <graydon@redhat.com> - * @author Andrew John Hughes <gnu_andrew@member.fsf.org> + * @author Michael Koch (konqueror@gmx.de) + * @author Graydon Hoare (graydon@redhat.com) + * @author Andrew John Hughes (gnu_andrew@member.fsf.org) * @see JRadioButton * @see JCheckBox * @since 1.2 */ public class JToggleButton extends AbstractButton implements Accessible { - /** * This class provides accessibility support for the toggle button. */ diff --git a/libjava/javax/swing/JTree.java b/libjava/javax/swing/JTree.java index 353547ca4db..170fd3014b2 100644 --- a/libjava/javax/swing/JTree.java +++ b/libjava/javax/swing/JTree.java @@ -1,5 +1,5 @@ /* JTree.java -- - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -570,7 +570,7 @@ public class JTree extends JComponent } /** - * Sets the model to use in <code>JTree</object>. + * Sets the model to use in <code>JTree</code>. * * @param model the <code>TreeModel</code> to use */ diff --git a/libjava/javax/swing/SpinnerListModel.java b/libjava/javax/swing/SpinnerListModel.java index 4da26146906..9b2667182f2 100644 --- a/libjava/javax/swing/SpinnerListModel.java +++ b/libjava/javax/swing/SpinnerListModel.java @@ -1,5 +1,5 @@ /* SpinnerListModel.java -- A spinner model backed by a list or an array. - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -59,7 +59,7 @@ import java.util.List; * is changed via <code>setList()</code> or when the current value is * set directly using <code>setValue()</code>. * - * @author Andrew John Hughes <gnu_andrew@member.fsf.org> + * @author Andrew John Hughes (gnu_andrew@member.fsf.org) * @see SpinnerModel * @see AbstractSpinnerModel * @see JSpinner diff --git a/libjava/javax/swing/event/EventListenerList.java b/libjava/javax/swing/event/EventListenerList.java index e7294afcef4..226cac17916 100644 --- a/libjava/javax/swing/event/EventListenerList.java +++ b/libjava/javax/swing/event/EventListenerList.java @@ -1,5 +1,5 @@ /* EventListenerList.java -- - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -84,8 +84,8 @@ import java.util.EventListener; * } * }</pre></blockquote> * - * @author <a href="mailto:aselkirk@sympatico.ca">Andrew Selkirk</a> - * @author <a href="mailto:brawer@dandelis.ch">Sascha Brawer</a> + * @author Andrew Selkirk (aselkirk@sympatico.ca) + * @author Sascha Brawer (brawer@dandelis.ch) */ public class EventListenerList implements Serializable diff --git a/libjava/javax/swing/text/JTextComponent.java b/libjava/javax/swing/text/JTextComponent.java index dee496d6b40..2a05e95306b 100644 --- a/libjava/javax/swing/text/JTextComponent.java +++ b/libjava/javax/swing/text/JTextComponent.java @@ -1,5 +1,5 @@ /* JTextComponent.java -- - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -302,7 +302,7 @@ public abstract class JTextComponent extends JComponent * report</a>, a pair of private classes wraps a {@link * javax.swing.text.Keymap} in the new {@link InputMap} / {@link * ActionMap} interfaces, such that old Keymap-using code can make use of - * the new framework.</p> + * the new framework. * * <p>A little bit of experimentation with these classes reveals the following * structure: @@ -843,7 +843,7 @@ public abstract class JTextComponent extends JComponent * <code>b</code>, if there exists a provided action <code>a</code> such * that <code>a.getValue(Action.NAME) == b.ActionName</code> then an * entry is added to the Keymap mapping <code>b</code> to - * </code>a</code>. + * <code>a</code>. * * @param map The Keymap to add new mappings to * @param bindings The set of bindings to add to the Keymap @@ -943,7 +943,7 @@ public abstract class JTextComponent extends JComponent } /** - * Get the <code>AccessibleContext<code> of this object. + * Get the <code>AccessibleContext</code> of this object. * * @return an <code>AccessibleContext</code> object */ diff --git a/libjava/javax/swing/text/StringContent.java b/libjava/javax/swing/text/StringContent.java index f470dddf241..c984bd892ee 100644 --- a/libjava/javax/swing/text/StringContent.java +++ b/libjava/javax/swing/text/StringContent.java @@ -39,13 +39,13 @@ exception statement from your version. */ package javax.swing.text; import java.io.Serializable; -import java.util.Vector; import java.util.Iterator; +import java.util.Vector; -import javax.swing.undo.UndoableEdit; import javax.swing.undo.AbstractUndoableEdit; -import javax.swing.undo.CannotUndoException; import javax.swing.undo.CannotRedoException; +import javax.swing.undo.CannotUndoException; +import javax.swing.undo.UndoableEdit; /** * An implementation of the <code>AbstractDocument.Content</code> diff --git a/libjava/javax/swing/text/Utilities.java b/libjava/javax/swing/text/Utilities.java index 6d2b54680a0..c55f48e0a5f 100644 --- a/libjava/javax/swing/text/Utilities.java +++ b/libjava/javax/swing/text/Utilities.java @@ -1,5 +1,5 @@ /* Utilities.java -- - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -45,7 +45,7 @@ import java.awt.Graphics; * A set of utilities to deal with text. This is used by several other classes * inside this package. * - * @author Roman Kennke <roman@ontographics.com> + * @author Roman Kennke (roman@ontographics.com) */ public class Utilities { diff --git a/libjava/javax/swing/undo/UndoManager.java b/libjava/javax/swing/undo/UndoManager.java index c1b7cb88ffa..fcdcf34ec0f 100644 --- a/libjava/javax/swing/undo/UndoManager.java +++ b/libjava/javax/swing/undo/UndoManager.java @@ -1,5 +1,5 @@ /* AbstractTableModel.java -- - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -81,7 +81,7 @@ import javax.swing.event.UndoableEditListener; * {@link javax.swing.event.UndoableEvent} sources do not need to * broadcast their events from inside the Swing worker thread. * - * @author <a href="mailto:brawer@dandelis.ch">Sascha Brawer</a> + * @author Sascha Brawer (brawer@dandelis.ch) */ public class UndoManager extends CompoundEdit diff --git a/libjava/javax/swing/undo/UndoableEditSupport.java b/libjava/javax/swing/undo/UndoableEditSupport.java index 8b4cef77588..80234aa8a75 100644 --- a/libjava/javax/swing/undo/UndoableEditSupport.java +++ b/libjava/javax/swing/undo/UndoableEditSupport.java @@ -1,5 +1,5 @@ /* UndoableEditSupport.java -- - Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -48,8 +48,8 @@ import javax.swing.event.UndoableEditListener; * A helper class for supporting {@link * javax.swing.event.UndoableEditListener}. * - * @author <a href="mailto:aselkirk@sympatico.ca">Andrew Selkirk</a> - * @author <a href="mailto:brawer@dandelis.ch">Sascha Brawer</a> + * @author Andrew Selkirk (aselkirk@sympatico.ca) + * @author Sascha Brawer (brawer@dandelis.ch) */ public class UndoableEditSupport { |

