Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/hyperlink/IHyperlinkPresenter.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/hyperlink/IHyperlinkPresenter.java28
1 files changed, 13 insertions, 15 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/hyperlink/IHyperlinkPresenter.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/hyperlink/IHyperlinkPresenter.java
index d0d60392e7a..f926faccd92 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/hyperlink/IHyperlinkPresenter.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/hyperlink/IHyperlinkPresenter.java
@@ -17,24 +17,22 @@ import org.eclipse.jface.text.ITextViewer;
/**
- * A hyperlink presenter shows hyperlinks on the installed text viewer
- * and allows to pick one on of the hyperlinks.
+ * A hyperlink presenter shows hyperlinks on the installed text viewer and allows to pick one on of
+ * the hyperlinks.
* <p>
- * In order to provide backward compatibility for clients of <code>IHyperlinkDetector</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>IHyperlinkDetector</code>,
+ * extension interfaces are used to provide a means of evolution. The following extension interfaces
+ * exist:
+ * </p>
* <ul>
- * <li>{@link IHyperlinkPresenterExtension} since version 3.4,
- * adds the ability to query whether the currently shown hyperlinks
- * can be hidden.
- * </li>
- * <li>{@link IHyperlinkPresenterExtension2} since version 3.7,
- * adds the ability distinguish between the modes in which the
- * control either takes focus or not when visible.
- * </li>
- * </ul></p>
+ * <li>{@link IHyperlinkPresenterExtension} since version 3.4, adds the ability to query whether the
+ * currently shown hyperlinks can be hidden.</li>
+ * <li>{@link IHyperlinkPresenterExtension2} since version 3.7, adds the ability distinguish between
+ * the modes in which the control either takes focus or not when visible.</li>
+ * </ul>
* <p>
- * Clients may implement this interface. A default implementation is provided
- * through {@link org.eclipse.jface.text.hyperlink.DefaultHyperlinkPresenter}.
+ * Clients may implement this interface. A default implementation is provided through
+ * {@link org.eclipse.jface.text.hyperlink.DefaultHyperlinkPresenter}.
* </p>
*
* @see IHyperlinkPresenterExtension

Back to the top