Nikita Eshkeev
- 活动总数 16
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 5
-
已编辑于 How do I access INJECTION of a PsiField's initializer, which is a PsiLanguageInjectionHost?
What I have done: I defined my own language "MyLanguage" I need to inject this language to both annotations' values and fields' initializers, so I defined a com.intellij.lang.injection.MultiHostIn... -
已编辑于 Autocompletion hangs in custom MultiHostInjector
已回答I defined the following instance of MultiHostInjector to treat comments a java methods' bodies: public class MyCustomMultiHostInjector implements MultiHostInjector { @Override public void get... -
创建于 How do I enhance java parser to capture information from PsiComment and PsiDocComment?
已回答I would like to capture some valuable information from a comment block either PsiComment or PsiDocComment which, say, is enclosed into curly brackets, for example: /** * Documentation string 1 * { ... -
已编辑于 How do I add a completion contributor for a composite element?
I need to add additional entries to the completion dialog for method references (e.g. Objects::toString). The article says that I need to use withParent or withSuperParent for composite elements, b... -
已编辑于 How do I add java-psi-impl which contains JavaElementType to my plugin project?
已回答I started a new intellij platform plugin project with gradle as it described in the documentation. My gradle.build looks like this (I haven't touched it since its creation): plugins { id 'jav...