Package fr.adrienbrault.idea.symfony2plugin.codeInsight

Examples of fr.adrienbrault.idea.symfony2plugin.codeInsight.GotoCompletionRegistrarParameter


    public static Collection<GotoCompletionContributor> getContributors(final PsiElement psiElement) {

        final Collection<GotoCompletionContributor> contributors = new ArrayList<GotoCompletionContributor>();

        GotoCompletionRegistrarParameter registrar = new GotoCompletionRegistrarParameter() {
            @Override
            public void register(@NotNull ElementPattern<? extends PsiElement> pattern, GotoCompletionContributor contributor) {
                if(pattern.accepts(psiElement)) {
                    contributors.add(contributor);
                }
View Full Code Here

TOP

Related Classes of fr.adrienbrault.idea.symfony2plugin.codeInsight.GotoCompletionRegistrarParameter

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.