Examples of calcFindUsagesOptions()


Examples of com.intellij.find.findUsages.AbstractFindUsagesDialog.calcFindUsagesOptions()

  private void showDialogAndFindUsages(@NotNull FindUsagesHandler handler,
      @NotNull RelativePoint popupPosition, Editor editor, int maxUsages) {
    AbstractFindUsagesDialog dialog = handler.getFindUsagesDialog(false, false, false);
    dialog.show();
    if (dialog.isOK()) {
      dialog.calcFindUsagesOptions();
      showElementUsages(handler, editor, popupPosition, maxUsages, getDefaultOptions(handler));
    }
  }

  private static String searchScopePresentableName(@NotNull FindUsagesOptions options,
View Full Code Here

Examples of com.intellij.find.findUsages.AbstractFindUsagesDialog.calcFindUsagesOptions()

      Editor editor,
      int maxUsages) {
    AbstractFindUsagesDialog dialog = handler.getFindUsagesDialog(false, false, false);
    dialog.show();
    if (dialog.isOK()) {
      dialog.calcFindUsagesOptions();
      showElementUsages(handler, editor, popupPosition, maxUsages, getDefaultOptions(handler));
    }
  }

  private static String searchScopePresentableName(@NotNull FindUsagesOptions options, @NotNull Project project) {
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.