diff options
author | Michael Koch <konqueror@gmx.de> | 2004-04-20 10:51:42 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-04-20 10:51:42 +0000 |
commit | 2c4d54e6d07a0b3aab74c0a5bafe55f49dabb86d (patch) | |
tree | 97f2ca60a2bbac3c68603fd274d0726714c063ea /libjava/javax/swing/undo/CompoundEdit.java | |
parent | 5589f3e5a5baa446f71948f5caec0811366ec32c (diff) | |
download | gcc-2c4d54e6d07a0b3aab74c0a5bafe55f49dabb86d.zip gcc-2c4d54e6d07a0b3aab74c0a5bafe55f49dabb86d.tar.gz gcc-2c4d54e6d07a0b3aab74c0a5bafe55f49dabb86d.tar.bz2 |
JLayeredPane.java, [...]: Fixed HTML tags in javadocs all over.
2004-04-20 Michael Koch <konqueror@gmx.de>
* javax/swing/JLayeredPane.java,
javax/swing/plaf/BorderUIResource.java,
javax/swing/plaf/ComponentUI.java,
javax/swing/undo/CompoundEdit.java,
javax/swing/undo/StateEdit.java:
Fixed HTML tags in javadocs all over.
From-SVN: r80893
Diffstat (limited to 'libjava/javax/swing/undo/CompoundEdit.java')
-rw-r--r-- | libjava/javax/swing/undo/CompoundEdit.java | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libjava/javax/swing/undo/CompoundEdit.java b/libjava/javax/swing/undo/CompoundEdit.java index 565a327..730d5b2 100644 --- a/libjava/javax/swing/undo/CompoundEdit.java +++ b/libjava/javax/swing/undo/CompoundEdit.java @@ -45,17 +45,18 @@ import java.util.Vector; * <code>UndoableEdits</code>. * * <p>The use of a <code>CompoundEdit</code> is divided in two separate - * phases. - * - * <ol><li>In the first phase, the <code>CompoundEdit</code> is - * initialized. After a new instance of <code>CompoundEdit</code> has - * been created, {@link #addEdit(UndoableEdit)} is called for each - * element of the compound. To terminate the initialization phase, - * call {@link #end()}.</li> + * phases.</p> * + * <ol> + * <li>In the first phase, the <code>CompoundEdit</code> is + * initialized. After a new instance of <code>CompoundEdit</code> has + * been created, {@link #addEdit(UndoableEdit)} is called for each + * element of the compound. To terminate the initialization phase, + * call {@link #end()}.</li> * <li>In the second phase, the the <code>CompoundEdit</code> can be - * used, typically by invoking {@link #undo()} and {@link - * #redo()}.</li></ol> + * used, typically by invoking {@link #undo()} and + * {@link #redo()}.</li> + * </ol> * * @author Andrew Selkirk (aselkirk@sympatico.ca) * @author Sascha Brawer (brawer@dandelis.ch) |