From b93f27670ec4e665997e9ebb70e7fdcb3bf8da1c Mon Sep 17 00:00:00 2001 From: Dmitry Avdeev Date: Thu, 23 May 2013 15:17:43 +0400 Subject: [PATCH] javadoc --- .../src/com/intellij/codeInsight/lookup/LookupElement.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/lang-api/src/com/intellij/codeInsight/lookup/LookupElement.java b/platform/lang-api/src/com/intellij/codeInsight/lookup/LookupElement.java index f89ad2c558e6..c9f3a996bec7 100644 --- a/platform/lang-api/src/com/intellij/codeInsight/lookup/LookupElement.java +++ b/platform/lang-api/src/com/intellij/codeInsight/lookup/LookupElement.java @@ -30,8 +30,9 @@ import java.util.Set; /** * A typical way to create lookup element is to use {@link com.intellij.codeInsight.lookup.LookupElementBuilder}. * Another way is to subclass it. Use the latter way only if you need it to implement some additional interface, to modify equals/hashCode - * or other advanced logic + * or other advanced logic. * + * @see com.intellij.codeInsight.completion.PrioritizedLookupElement * @author peter */ public abstract class LookupElement extends UserDataHolderBase {