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


Java ParameterInfoComponent類代碼示例

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


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

示例1: testSelectionWithGenerics

import com.intellij.codeInsight.hint.ParameterInfoComponent; //導入依賴的package包/類
public void testSelectionWithGenerics() throws Exception {
  configureByFile(BASE_PATH + getTestName(false) + ".java");

  final MethodParameterInfoHandler handler = new MethodParameterInfoHandler();
  final CreateParameterInfoContext context = new MockCreateParameterInfoContext(myEditor, myFile);
  final PsiExpressionList list = handler.findElementForParameterInfo(context);
  assertNotNull(list);
  final Object[] itemsToShow = context.getItemsToShow();
  assertNotNull(itemsToShow);
  assertEquals(2, itemsToShow.length);
  assertTrue(itemsToShow[0] instanceof MethodCandidateInfo);
  final ParameterInfoUIContextEx parameterContext = ParameterInfoComponent.createContext(itemsToShow, myEditor, handler, -1);
  final MockUpdateParameterInfoContext updateParameterInfoContext = new MockUpdateParameterInfoContext(myEditor, myFile, itemsToShow);
  updateParameterInfoContext.setParameterOwner(list);
  handler.updateParameterInfo(list, updateParameterInfoContext);
  assertTrue(updateParameterInfoContext.isUIComponentEnabled(0) || updateParameterInfoContext.isUIComponentEnabled(1));
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:18,代碼來源:ParameterInfoTest.java

示例2: testAfterGenericsInsideCall

import com.intellij.codeInsight.hint.ParameterInfoComponent; //導入依賴的package包/類
public void testAfterGenericsInsideCall() throws Exception {
  configureByFile(BASE_PATH + getTestName(false) + ".java");

  final MethodParameterInfoHandler handler = new MethodParameterInfoHandler();
  final CreateParameterInfoContext context = new MockCreateParameterInfoContext(myEditor, myFile);
  final PsiExpressionList list = handler.findElementForParameterInfo(context);
  assertNotNull(list);
  final Object[] itemsToShow = context.getItemsToShow();
  assertNotNull(itemsToShow);
  assertEquals(2, itemsToShow.length);
  assertTrue(itemsToShow[0] instanceof MethodCandidateInfo);
  final PsiMethod method = ((MethodCandidateInfo)itemsToShow[0]).getElement();
  final ParameterInfoUIContextEx parameterContext = ParameterInfoComponent.createContext(itemsToShow, myEditor, handler, 1);
  parameterContext.setUIComponentEnabled(true);
  Assert.assertEquals("<html>Class&lt;T&gt; type, <b>boolean tags</b></html>",
                      MethodParameterInfoHandler
                        .updateMethodPresentation(method, ((MethodCandidateInfo)itemsToShow[0]).getSubstitutor(), parameterContext));
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:19,代碼來源:ParameterInfoTest.java

示例3: doTestPresentation

import com.intellij.codeInsight.hint.ParameterInfoComponent; //導入依賴的package包/類
private void doTestPresentation(String expectedString, int currentParameterIndex) {
  configureByFile(BASE_PATH + getTestName(false) + ".java");

  final MethodParameterInfoHandler handler = new MethodParameterInfoHandler();
  final CreateParameterInfoContext context = new MockCreateParameterInfoContext(myEditor, myFile);
  final PsiExpressionList list = handler.findElementForParameterInfo(context);
  assertNotNull(list);
  final Object[] itemsToShow = context.getItemsToShow();
  assertNotNull(itemsToShow);
  assertEquals(1, itemsToShow.length);
  assertTrue(itemsToShow[0] instanceof MethodCandidateInfo);
  final PsiMethod method = ((MethodCandidateInfo)itemsToShow[0]).getElement();
  final ParameterInfoUIContextEx parameterContext = ParameterInfoComponent.createContext(itemsToShow, myEditor, handler,
                                                                                         currentParameterIndex);
  Assert.assertEquals(expectedString,
                      MethodParameterInfoHandler
                        .updateMethodPresentation(method, ((MethodCandidateInfo)itemsToShow[0]).getSubstitutor(), parameterContext));
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:19,代碼來源:ParameterInfoTest.java

示例4: invokeParameterInfoForAnnotations

import com.intellij.codeInsight.hint.ParameterInfoComponent; //導入依賴的package包/類
private static String invokeParameterInfoForAnnotations() {
  final AnnotationParameterInfoHandler handler = new AnnotationParameterInfoHandler();
  final CreateParameterInfoContext context = new MockCreateParameterInfoContext(myEditor, myFile);
  final PsiAnnotationParameterList list = handler.findElementForParameterInfo(context);
  assertNotNull(list);
  final Object[] itemsToShow = context.getItemsToShow();
  assertNotNull(itemsToShow);
  assertEquals(1, itemsToShow.length);
  assertTrue(itemsToShow[0] instanceof PsiAnnotationMethod);
  final PsiAnnotationMethod method = (PsiAnnotationMethod)itemsToShow[0];
  final ParameterInfoUIContextEx parameterContext = ParameterInfoComponent.createContext(itemsToShow, myEditor, handler, -1);
  return AnnotationParameterInfoHandler.updateUIText(method, parameterContext);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:14,代碼來源:ParameterInfoTest.java

示例5: patchQuickInfo

import com.intellij.codeInsight.hint.ParameterInfoComponent; //導入依賴的package包/類
static void patchQuickInfo() throws Exception {
  final String accentColor = MTConfig.getInstance().getAccentColor();

  final Field[] fields = ParameterInfoComponent.class.getDeclaredFields();
  final Object[] objects = Arrays.stream(fields)
                                 .filter(f -> f.getType().equals(Map.class))
                                 .toArray();

  StaticPatcher.setFinalStatic((Field) objects[0], ImmutableMap.of(
      ParameterInfoUIContextEx.Flag.HIGHLIGHT, "b color=" + accentColor,
      ParameterInfoUIContextEx.Flag.DISABLE, "font color=gray",
      ParameterInfoUIContextEx.Flag.STRIKEOUT, "strike"));
}
 
開發者ID:ChrisRM,項目名稱:material-theme-jetbrains,代碼行數:14,代碼來源:UIReplacer.java


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