Serhii Kachan
- 活动总数 47
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 10
-
已编辑于 Custom string literal formatter
已回答I would like to implement custom formatting for a certain parts of my code:Consider the following code snippet: MyClass clazz = new MyClass();clazz .row("|first|second|third|") .row("|a|bla b... -
创建于 ServiceLoader alternative for plugin SDK
已回答I'm curious how can I create a facade class that keeps a collection of instantiated classes implementing a particular class.So I can further filter these implementations and return specific one eve... -
已编辑于 Run Configuration 'Run' tab and 'Console layout'
I'm writing a custom Run Configuration (ApplicationConfiguration alike).Everything goes well so far and I am now stuck at execution process layout.Problem: When I run my code it executes as expecte... -
创建于 How to check whether element ever referenced by custom reference
已回答I have implemented a PsiReferenceContributor for specific PsiExpressionLiteral elements. They refer to methods.But method is highlighted as "never used".How can I suppress this warning?I've started... -
已编辑于 Get usages in return from referenced element
已回答PsiReferenceContributor implementation: public class ImplementationStepReferenceContributor extends PsiReferenceContributor { @Override public void registerReferenceProviders(@NotNull PsiRefe... -
创建于 How do I find PsiElements of any type conditionally in a project?
已回答I tried to find any utilities like Searchers of Finders, but no luck.Here are some examples: find all psi literals -> condition: literal in a specific psi method call parameter find all psi method... -
创建于 PsiAugmentProvider throws ArrayStoreException
已回答I'm trying to make IDEA think that class member is present, using implementation of PsiAugmentProvider.I created a @Singleton annotation: @Target(ElementType.TYPE)@Retention(RetentionPolicy.SOURCE)... -
创建于 java.io.IOException: Broken index maps: trigrams empty true users empty false paths empty false
已回答When opening a project I always get an error once, it says it's in IDEA Core.How can I fix it? java.io.IOException: Broken index maps:trigrams empty trueusers empty falsepaths empty false at com... -
已编辑于 Highlight string literal parts in a specific method call
已回答Please take a look at my question on SO. https://stackoverflow.com/questions/73925462/intellij-idea-custom-language-plugin-highlight-numbers-in-string-parameter-of?noredirect=1#comment130547093_73... -
创建于 Variable 'variable' might not have been initialized compilation error suppressing by custom annotation
已回答Hi Dev Team!I would like to make a little cheat on Java syntax.There is a built-in compilation error like Variable 'variable' might not have been initialized I am working on a framework and there i...