當前位置: 首頁>>代碼示例>>Java>>正文


Java IntentionFilterOwner類代碼示例

本文整理匯總了Java中com.intellij.psi.IntentionFilterOwner的典型用法代碼示例。如果您正苦於以下問題:Java IntentionFilterOwner類的具體用法?Java IntentionFilterOwner怎麽用?Java IntentionFilterOwner使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


IntentionFilterOwner類屬於com.intellij.psi包,在下文中一共展示了IntentionFilterOwner類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getIntentionActionsToShow

import com.intellij.psi.IntentionFilterOwner; //導入依賴的package包/類
private void getIntentionActionsToShow() {
  getActionsToShow(myEditor, myFile, myIntentionsInfo, myPassIdToShowIntentionsFor);
  if (myFile instanceof IntentionFilterOwner) {
    final IntentionFilterOwner.IntentionActionsFilter actionsFilter = ((IntentionFilterOwner)myFile).getIntentionActionsFilter();
    if (actionsFilter == null) return;
    if (actionsFilter != IntentionFilterOwner.IntentionActionsFilter.EVERYTHING_AVAILABLE) {
      myIntentionsInfo.filterActions(actionsFilter);
    }
  }

  if (myIntentionsInfo.isEmpty()) {
    return;
  }
  myShowBulb = !myIntentionsInfo.guttersToShow.isEmpty() ||
    ContainerUtil.exists(ContainerUtil.concat(myIntentionsInfo.errorFixesToShow, myIntentionsInfo.inspectionFixesToShow,myIntentionsInfo.intentionsToShow), new Condition<HighlightInfo.IntentionActionDescriptor>() {
      @Override
      public boolean value(HighlightInfo.IntentionActionDescriptor descriptor) {
        return IntentionManagerSettings.getInstance().isShowLightBulb(descriptor.getAction());
      }
    });
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:22,代碼來源:ShowIntentionsPass.java

示例2: getIntentionActionsToShow

import com.intellij.psi.IntentionFilterOwner; //導入依賴的package包/類
private void getIntentionActionsToShow() {
  if (LookupManager.getInstance(myProject).getActiveLookup() != null) return;

  getActionsToShow(myEditor, myFile, myIntentionsInfo, myPassIdToShowIntentionsFor);
  if (myFile instanceof IntentionFilterOwner) {
    final IntentionFilterOwner.IntentionActionsFilter actionsFilter = ((IntentionFilterOwner)myFile).getIntentionActionsFilter();
    if (actionsFilter == null) return;
    if (actionsFilter != IntentionFilterOwner.IntentionActionsFilter.EVERYTHING_AVAILABLE) {
      myIntentionsInfo.filterActions(actionsFilter);
    }
  }

  if (myIntentionsInfo.isEmpty()) {
    return;
  }
  myShowBulb = !myIntentionsInfo.guttersToShow.isEmpty();
  if (!myShowBulb) {
    for (HighlightInfo.IntentionActionDescriptor descriptor : ContainerUtil.concat(myIntentionsInfo.errorFixesToShow, myIntentionsInfo.inspectionFixesToShow,myIntentionsInfo.intentionsToShow)) {
      final IntentionAction action = descriptor.getAction();
      if (IntentionManagerSettings.getInstance().isShowLightBulb(action)) {
        myShowBulb = true;
        break;
      }
    }
  }
}
 
開發者ID:lshain-android-source,項目名稱:tools-idea,代碼行數:27,代碼來源:ShowIntentionsPass.java

示例3: filter

import com.intellij.psi.IntentionFilterOwner; //導入依賴的package包/類
private static void filter(@NotNull List<HighlightInfo.IntentionActionDescriptor> descriptors,
                           @NotNull IntentionFilterOwner.IntentionActionsFilter actionsFilter) {
  for (Iterator<HighlightInfo.IntentionActionDescriptor> it = descriptors.iterator(); it.hasNext();) {
      HighlightInfo.IntentionActionDescriptor actionDescriptor = it.next();
      if (!actionsFilter.isAvailable(actionDescriptor.getAction())) it.remove();
    }
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:8,代碼來源:ShowIntentionsPass.java

示例4: filterActions

import com.intellij.psi.IntentionFilterOwner; //導入依賴的package包/類
private void filterActions(@NotNull IntentionFilterOwner.IntentionActionsFilter actionsFilter) {
  filter(intentionsToShow, actionsFilter);
  filter(errorFixesToShow, actionsFilter);
  filter(inspectionFixesToShow, actionsFilter);
  filter(guttersToShow, actionsFilter);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:7,代碼來源:ShowIntentionsPass.java

示例5: filterActions

import com.intellij.psi.IntentionFilterOwner; //導入依賴的package包/類
public void filterActions(@NotNull IntentionFilterOwner.IntentionActionsFilter actionsFilter) {
  filter(intentionsToShow, actionsFilter);
  filter(errorFixesToShow, actionsFilter);
  filter(inspectionFixesToShow, actionsFilter);
  filter(guttersToShow, actionsFilter);
}
 
開發者ID:lshain-android-source,項目名稱:tools-idea,代碼行數:7,代碼來源:ShowIntentionsPass.java


注:本文中的com.intellij.psi.IntentionFilterOwner類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。