Examples of TreeSpeedSearch


Examples of com.intellij.ui.TreeSpeedSearch

    issuePane = new IssuePane(project, issueTree, false);

    new CustomAutoScrollToSourceHandler(project).install(issueTree);

    new TreeSpeedSearch(issueTree, new Convertor<TreePath, String>()
    {
      public String convert(TreePath o)
      {
        DefaultMutableTreeNode node = (DefaultMutableTreeNode) o.getLastPathComponent();
        return node.getUserObject().toString();
View Full Code Here

Examples of com.intellij.ui.TreeSpeedSearch

    issuePane = new IssuePane(project, issueTree, false);

    new CustomAutoScrollToSourceHandler(project).install(issueTree);

    new TreeSpeedSearch(issueTree, new Convertor<TreePath, String>()
    {
      public String convert(TreePath o)
      {
        DefaultMutableTreeNode node = (DefaultMutableTreeNode) o.getLastPathComponent();
        return node.getUserObject().toString();
View Full Code Here

Examples of com.intellij.ui.TreeSpeedSearch

        tree.getEmptyText().setText(LOADING);
        tree.setCellRenderer(new JenkinsTreeRenderer(favoriteJobs));
        tree.setName("jobTree");
        tree.setModel(new DefaultTreeModel(new DefaultMutableTreeNode(jenkins)));

        new TreeSpeedSearch(tree, new Convertor<TreePath, String>() {

            @Override
            public String convert(TreePath treePath) {
                final DefaultMutableTreeNode node = (DefaultMutableTreeNode) treePath.getLastPathComponent();
                final Object userObject = node.getUserObject();
View Full Code Here

Examples of com.intellij.ui.TreeSpeedSearch

    PopupHandler.installPopupHandler((JComponent) component, group, "POPUP", actionManager);
  }

  public static void installIdeaTreeActions(JTree t) {
    TreeUtil.installActions(t);
    new TreeSpeedSearch(t);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.