Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-05-04 16:13:22 +0000
committerMarkus Keller2016-05-04 16:13:22 +0000
commitec2621e1aec5c10cbd1294bc70e854f7cf9de8b0 (patch)
treed39f135bb113a17ee60f9844d53e6181fcec338f
parentc76af3c65cbff534721df0ddfafddeb5b564c597 (diff)
downloadeclipse.platform.text-ec2621e1aec5c10cbd1294bc70e854f7cf9de8b0.tar.gz
eclipse.platform.text-ec2621e1aec5c10cbd1294bc70e854f7cf9de8b0.tar.xz
eclipse.platform.text-ec2621e1aec5c10cbd1294bc70e854f7cf9de8b0.zip
Bug 211767: [hovering] focus control in information controls not correctI20160504-2000
Javadoc fix
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/IInformationControl.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/IInformationControl.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/IInformationControl.java
index ada325f1576..88d34a21ce9 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/IInformationControl.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/IInformationControl.java
@@ -163,6 +163,10 @@ public interface IInformationControl {
* Returns whether this information control (or one of its children) has the focus.
* The suggested implementation is like this (<code>fShell</code> is this information control's shell):
* <pre>return fShell.getDisplay().getActiveShell() == fShell</pre>
+ *
+ * <p>Note that implementations of {@link IInformationControlExtension5} are required to use this
+ * suggested implementation.
+ * </p>
*
* @return <code>true</code> when the information control has the focus, otherwise <code>false</code>
*/

Back to the top