diff options
Diffstat (limited to 'libjava/javax/swing/text')
-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 |
3 files changed, 9 insertions, 9 deletions
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 { |