Package com.intellij.codeInsight.daemon

Examples of com.intellij.codeInsight.daemon.GutterIconNavigationHandler


                    @Override
                    public String fun(PsiElement psiElement) {
                        return GutterIconTooltipHelper.composeText(targets, "", "{0}");
                    }
                },
                new GutterIconNavigationHandler() {
                    @Override
                    public void navigate(MouseEvent e, PsiElement elt) {
                        PsiElementListNavigator.openTargets(e, targets, "Select Target", null, new DefaultPsiElementCellRenderer());
                    }
                },
View Full Code Here

TOP

Related Classes of com.intellij.codeInsight.daemon.GutterIconNavigationHandler

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.