deprecations in the name of LookupElementBuilder

This commit is contained in:
peter.gromov
2010-12-22 19:58:25 +03:00
parent 970d6363e8
commit 1fbf64384a
3 changed files with 8 additions and 0 deletions
@@ -25,7 +25,9 @@ import java.awt.*;
/**
* @author Dmitry Avdeev
* Use {@link com.intellij.codeInsight.lookup.LookupElementBuilder}
*/
@Deprecated
public class LookupValueFactory {
private LookupValueFactory() {
@@ -20,7 +20,9 @@ import com.intellij.psi.PsiElement;
/**
* @author Maxim.Mossienko
* Use {@link com.intellij.codeInsight.lookup.LookupElementBuilder}
*/
@Deprecated
public interface LookupValueWithPsiElement {
PsiElement getElement();
}
@@ -78,6 +78,10 @@ public abstract class ElementPresentationManager {
return createVariants(elements, namer, 0);
}
/**
* Use {@link com.intellij.codeInsight.lookup.LookupElementBuilder}
*/
@Deprecated
public abstract Object createVariant(final Object variant, final String name, final PsiElement psiElement);
@NotNull