Simon Stratmann
- 活动总数 165
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 13
- 订阅数 47
-
创建于 Two maven projects: Find usages of classes in project modules which are not imported
已回答This is a bit hard to describe so please bear with me. I have a maven project A which supplies an API and has implementations of this API and modules which use the API (and its implementations). I ... -
已编辑于 Using references in custom languages *to* expression literals
已回答I'm writing a plugin for a custom language. Java code is generated from these files and they contain calls to Spring services which are identified by the Service annotation. So for example a line d... -
创建于 Disable custom language plugin in certain cases / depending on language version
已完成I'm writing a plugin for a custom language. I need to make sure that the plugin is only loaded for certain versions of the language so that it does not show false positive errors (and other things)... -
创建于 References and usages: Go to declaration works, usages return results, jump to usage does not
已回答I'm writing a custom language plugin for a workflow language. The files contain references to Spring services. A spring service with the name "doSomethingService" (@Service("doSomethingService") ma... -
创建于 Custom langugage: Autocomplete based on grammar?
已回答I'm currently working on custom language support. I was able to get a (mostly) working BNF and generate a lexer from it. The language looks about like this: ``` State A { goto B and call someServic... -
创建于 Notifications "stuck" and can't be closed anymore
I've developed a plugin that shows balloon notifications for GitlabCI pipelines. When the plugin is running while the computer is locked or otherwise idle (not sure) and it continually shows notifi... -
创建于 Plugin working folder to store resources
已回答Is there some kind of folder where my plugin can store resources and which are kept between restarts? -
创建于 ProgressManager.getInstance().executeNonCancelableSection() runs in GUI thread
已回答I have a button in a tool window. When the button is clicked the following code is run: ProgressManager.getInstance().executeNonCancelableSection(() -> { List<PipelineJobStatus> statuses = get... -
创建于 Add final keyword to implemented / overridden methods
已回答Is there any way of changing the template for implementing / overriding methods? We use a checkstyle rule that requires methods that are not overriden themselves to be final or have javadoc. The in... -
已编辑于 Creating or jumping to a resource folder for a given class
已回答I often want to create a resource file for a class that should be in the same folder structure as the file. For example I have src\test\java\com\xyz\converter\SomeClass.java and for that I want to ...