本文整理匯總了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));
}
示例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<T> type, <b>boolean tags</b></html>",
MethodParameterInfoHandler
.updateMethodPresentation(method, ((MethodCandidateInfo)itemsToShow[0]).getSubstitutor(), parameterContext));
}
示例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));
}
示例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);
}
示例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"));
}