Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IElementStateListener.java')
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IElementStateListener.java27
1 files changed, 14 insertions, 13 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IElementStateListener.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IElementStateListener.java
index 424724a3673..8441189a097 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IElementStateListener.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/IElementStateListener.java
@@ -18,23 +18,24 @@ package org.eclipse.ui.texteditor;
* Interface for parties interested in standardized element changes. These
* changes are:
* <ul>
- * <li> dirty state changes
- * <li> content replacements
- * <li> moves
- * <li> deletions
+ * <li>dirty state changes
+ * <li>content replacements
+ * <li>moves
+ * <li>deletions
* </ul>
- * The notifications sent to the element state listeners inform about those standardized,
- * abstract changes. The concrete change applied might differ from the one the listeners
- * are notified about, but should be interpreted as the one the listeners receive.
+ * The notifications sent to the element state listeners inform about those
+ * standardized, abstract changes. The concrete change applied might differ from
+ * the one the listeners are notified about, but should be interpreted as the
+ * one the listeners receive.
* <p>
- * In order to provided backward compatibility for clients of <code>IElementStateListener</code>,
- * extension interfaces are used to provide a means of evolution. The following extension interface
- * exists:
+ * In order to provided backward compatibility for clients of
+ * <code>IElementStateListener</code>, extension interfaces are used to provide
+ * a means of evolution. The following extension interface exists:
+ * </p>
* <ul>
- * <li>{@link org.eclipse.ui.texteditor.IElementStateListenerExtension} since version 2.0 introducing
- * state validation events.</li>
+ * <li>{@link org.eclipse.ui.texteditor.IElementStateListenerExtension} since
+ * version 2.0 introducing state validation events.</li>
* </ul>
- * </p>
*
* @see org.eclipse.ui.texteditor.IElementStateListenerExtension
*/

Back to the top