Examples of GotoRelatedItem


Examples of com.intellij.navigation.GotoRelatedItem

          if (actionClass == null) {
            continue;
          }

          final PsiMethod actionMethod = action.searchActionMethod();
          items.add(new GotoRelatedItem(actionMethod != null ? actionMethod : actionClass));
        }

        return true;
      }
    });
View Full Code Here

Examples of com.intellij.navigation.GotoRelatedItem

        if (stepDefMethod != null) {
          final PsiFile stepDefFile = stepDefMethod.getContainingFile();
          if (!resultFiles.contains(stepDefFile)) {
            resultFiles.add(stepDefFile);
            result.add(new GotoRelatedItem(stepDefFile, "Step definition file"));
          }
        }
      }
      return result;
    }
View Full Code Here

Examples of com.intellij.navigation.GotoRelatedItem

        }

        // only one item dont need popover
        if(gotoRelatedItems.size() == 1) {

            GotoRelatedItem gotoRelatedItem = gotoRelatedItems.get(0);

            // hell: find any possible small icon
            Icon icon = null;
            if(gotoRelatedItem instanceof RelatedPopupGotoLineMarker.PopupGotoRelatedItem) {
                icon = ((RelatedPopupGotoLineMarker.PopupGotoRelatedItem) gotoRelatedItem).getSmallIcon();
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.