Simon Stratmann
- Total activity 165
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 13
- Subscriptions 47
-
Created Two maven projects: Find usages of classes in project modules which are not imported
AnsweredThis 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 ... -
Edited Using references in custom languages *to* expression literals
AnsweredI'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... -
Created Disable custom language plugin in certain cases / depending on language version
CompletedI'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)... -
Created References and usages: Go to declaration works, usages return results, jump to usage does not
AnsweredI'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... -
Created Custom langugage: Autocomplete based on grammar?
AnsweredI'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... -
Created 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... -
Created Plugin working folder to store resources
AnsweredIs there some kind of folder where my plugin can store resources and which are kept between restarts? -
Created ProgressManager.getInstance().executeNonCancelableSection() runs in GUI thread
AnsweredI have a button in a tool window. When the button is clicked the following code is run: ProgressManager.getInstance().executeNonCancelableSection(() -> { List<PipelineJobStatus> statuses = get... -
Created Add final keyword to implemented / overridden methods
AnsweredIs 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... -
Edited Creating or jumping to a resource folder for a given class
AnsweredI 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 ...