Package com.intellij.ide.util

Examples of com.intellij.ide.util.DefaultPsiElementCellRenderer


      PsiElementListNavigator.openTargets(
        editor,
        DartResolveUtil.getComponentNames(supers).toArray(new NavigatablePsiElement[supers.size()]),
        DaemonBundle.message("navigation.title.subclass", component.getName(), supers.size()),
        "Subclasses of " + component.getName(),
        new DefaultPsiElementCellRenderer()
      );
    }
  }
View Full Code Here


        DartResolveUtil.getComponentNames(filteredSuperItems).toArray(new NavigatablePsiElement[filteredSuperItems.size()]);
      PsiElementListNavigator.openTargets(editor,
                                          targets,
                                          DaemonBundle.message("navigation.title.super.method", methodName),
                                          null,
                                          new DefaultPsiElementCellRenderer());
    }
  }
View Full Code Here

    if (function == null) return;

    List<ErlangCallbackSpec> callbackSpecs = ErlangNavigationUtil.getCallbackSpecs(function);
    String presentation = ErlangPsiImplUtil.createFunctionPresentation(function);

    PsiElementListNavigator.openTargets(editor, getNavigatables(presentation, callbackSpecs), "Go to callback specification", presentation, new DefaultPsiElementCellRenderer());
  }
View Full Code Here

        @Override
        public void navigate(MouseEvent e, PsiElement elt) {
          String title = MessageFormat.format("<html><body>Choose Overriding Callback of <b>{0}</b> ({1} callbacks found)</body></html>", presentation, callbackSpecs.size());
          PsiElementListNavigator.openTargets(
            e, navigatables.toArray(new NavigatablePsiElement[navigatables.size()]),
            title, title, new DefaultPsiElementCellRenderer()
          );
        }
      },
      GutterIconRenderer.Alignment.RIGHT
    );
View Full Code Here

TOP

Related Classes of com.intellij.ide.util.DefaultPsiElementCellRenderer

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.