Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/source/IAnnotationAccess.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/source/IAnnotationAccess.java25
1 files changed, 13 insertions, 12 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IAnnotationAccess.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IAnnotationAccess.java
index fa047123574..f1387ec5dd0 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IAnnotationAccess.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/IAnnotationAccess.java
@@ -14,22 +14,23 @@
package org.eclipse.jface.text.source;
/**
- * An annotation access provides access to information that is not available via
- * the API of {@link org.eclipse.jface.text.source.Annotation}. With version
- * 3.0 all this information is now available from the annotation itself.
+ * An annotation access provides access to information that is not available via the API of
+ * {@link org.eclipse.jface.text.source.Annotation}. With version 3.0 all this information is now
+ * available from the annotation itself.
* <p>
*
- * In order to provide backward compatibility for clients of
- * <code>IAnnotationAccess</code>, extension interfaces are used as a means
- * of evolution. The following extension interfaces exist:
+ * In order to provide backward compatibility for clients of <code>IAnnotationAccess</code>,
+ * extension interfaces are used as a means of evolution. The following extension interfaces exist:
+ * </p>
* <ul>
- * <li>{@link org.eclipse.jface.text.source.IAnnotationAccessExtension} since
- * version 3.0 replacing all methods in that interface</li>
- * <li>{@link IAnnotationAccessExtension2} since
- * version 3.2 allowing to set a quick assist assistant to an annotation access.</li>
- * </ul></p>
+ * <li>{@link org.eclipse.jface.text.source.IAnnotationAccessExtension} since version 3.0 replacing
+ * all methods in that interface</li>
+ * <li>{@link IAnnotationAccessExtension2} since version 3.2 allowing to set a quick assist
+ * assistant to an annotation access.</li>
+ * </ul>
* <p>
- * Clients usually implement this interface and its extension interfaces.</p>
+ * Clients usually implement this interface and its extension interfaces.
+ * </p>
*
* @see org.eclipse.jface.text.source.IAnnotationAccessExtension
* @see org.eclipse.jface.text.source.Annotation

Back to the top