Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/source/ILineDiffer.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/source/ILineDiffer.java21
1 files changed, 10 insertions, 11 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ILineDiffer.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ILineDiffer.java
index eac1c0fa0b5..abaf5d95222 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ILineDiffer.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ILineDiffer.java
@@ -18,26 +18,25 @@ import org.eclipse.jface.text.BadLocationException;
/**
* Protocol that allows direct access to line information. Usually, implementations will also
- * implement <code>IAnnotationModel</code>, which only allows <code>Iterator</code> based access
- * to annotations.
+ * implement <code>IAnnotationModel</code>, which only allows <code>Iterator</code> based access to
+ * annotations.
* <p>
- * <code>ILineDiffer</code> also allows to revert any lines to their original
- * contents as defined by the quick diff reference used by the receiver.
+ * <code>ILineDiffer</code> also allows to revert any lines to their original contents as defined by
+ * the quick diff reference used by the receiver.
* </p>
* <p>
* This interface may be implemented by clients.
* </p>
* <p>
* In order to provide backward compatibility for clients of <code>ILineDiffer</code>, extension
- * interfaces are used to provide a means of evolution. The following extension interface
- * exists:
+ * interfaces are used to provide a means of evolution. The following extension interface exists:
+ * </p>
* <ul>
- * <li> {@link ILineDifferExtension} (since version 3.1): introducing the concept
- * suspending and resuming an <code>ILineDiffer</code>.</li>
- * <li> {@link ILineDifferExtension2} (since version 3.3): allowing to query the suspension state
- * of an <code>ILineDiffer</code>.</li>
+ * <li>{@link ILineDifferExtension} (since version 3.1): introducing the concept suspending and
+ * resuming an <code>ILineDiffer</code>.</li>
+ * <li>{@link ILineDifferExtension2} (since version 3.3): allowing to query the suspension state of
+ * an <code>ILineDiffer</code>.</li>
* </ul>
- * </p>
*
* @since 3.0
*/

Back to the top