Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionListener.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionListener.java31
1 files changed, 16 insertions, 15 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionListener.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionListener.java
index 6ec55c9a1de..f1580a0da40 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionListener.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ICompletionListener.java
@@ -17,23 +17,24 @@ package org.eclipse.jface.text.contentassist;
/**
* A completion listener is informed before the content assistant computes completion proposals.
* <p>
- * In order to provide backward compatibility for clients of <code>ICompletionListener</code>, extension
- * interfaces are used to provide a means of evolution. The following extension interfaces exist:
+ * In order to provide backward compatibility for clients of <code>ICompletionListener</code>,
+ * extension interfaces are used to provide a means of evolution. The following extension interfaces
+ * exist:
+ * </p>
+ * <ul>
+ * <li>{@link org.eclipse.jface.text.contentassist.ICompletionListenerExtension} since version 3.4
+ * introducing the following functions:
* <ul>
- * <li>{@link org.eclipse.jface.text.contentassist.ICompletionListenerExtension} since version 3.4 introducing
- * the following functions:
- * <ul>
- * <li>additional notification about restarting the current code assist session</li>
- * </ul>
- * </li>
- * <li>{@link org.eclipse.jface.text.contentassist.ICompletionListenerExtension2} since version 3.8 introducing
- * the following functions:
- * <ul>
- * <li>additional notification after applying a proposal</li>
- * </ul>
- * </li>
+ * <li>additional notification about restarting the current code assist session</li>
+ * </ul>
+ * </li>
+ * <li>{@link org.eclipse.jface.text.contentassist.ICompletionListenerExtension2} since version 3.8
+ * introducing the following functions:
+ * <ul>
+ * <li>additional notification after applying a proposal</li>
+ * </ul>
+ * </li>
* </ul>
- * </p>
*
* <p>
* Clients may implement this interface.

Back to the top