Package com.intellij.util

Examples of com.intellij.util.Query


    public boolean isReferenceTo(PsiElement element) {
        return element instanceof JFlexMacroDefinition && ((JFlexMacroDefinition) element).getName().equals(getText());
    }

    public Object[] getVariants() {
        Query query = ReferencesSearch.search(this);
        return query.findAll().toArray();
    }
View Full Code Here

TOP

Related Classes of com.intellij.util.Query

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.