aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/javax/swing/undo/UndoableEdit.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/javax/swing/undo/UndoableEdit.java')
-rw-r--r--libjava/classpath/javax/swing/undo/UndoableEdit.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/libjava/classpath/javax/swing/undo/UndoableEdit.java b/libjava/classpath/javax/swing/undo/UndoableEdit.java
index 9938af7..1a08eca 100644
--- a/libjava/classpath/javax/swing/undo/UndoableEdit.java
+++ b/libjava/classpath/javax/swing/undo/UndoableEdit.java
@@ -39,10 +39,10 @@ package javax.swing.undo;
/**
* An editing operation that supports undo/redoability.
- *
+ *
* @author Andrew Selkirk
*/
-public interface UndoableEdit
+public interface UndoableEdit
{
/**
@@ -50,8 +50,8 @@ public interface UndoableEdit
* combined action.
*
* @param edit the editing action to be incorporated.
- *
- * @return <code>true</code> if the edit was combined successfully, and
+ *
+ * @return <code>true</code> if the edit was combined successfully, and
* <code>false</code> if it could not be combined.
*/
boolean addEdit(UndoableEdit edit);
@@ -98,14 +98,14 @@ public interface UndoableEdit
/**
* Returns the redo presentation name.
- *
+ *
* @return The redo presentation name.
*/
String getRedoPresentationName();
/**
* Returns the undo presentation name.
- *
+ *
* @return The undo presentation name.
*/
String getUndoPresentationName();
@@ -138,8 +138,8 @@ public interface UndoableEdit
* combined action that replaces the argument action.
*
* @param edit the editing action to be replaced.
- *
- * @return <code>true</code> if the edit is successfully replaced, and
+ *
+ * @return <code>true</code> if the edit is successfully replaced, and
* <code>false</code> otherwise.
*/
boolean replaceEdit(UndoableEdit edit);