Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Bas Leijdekkers
Total activity
1072
Last activity
March 14, 2024 19:13
Member since
May 15, 2003 14:47
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
426
Activity overview
Articles (0)
Posts (41)
Comments (605)
Sort by recent activity
Recent activity
Votes
Created
February 13, 2018 12:13
Official comment
Hi Riccardo, You're right, there is indeed a lack of documentation about Script Constraints. This is at least partially caused by the complexity exposed. Basically the entire API of IntelliJ IDEA i...
Community
IntelliJ IDEA Users
Search and Replace Structurally "Script Constraints" Documentation
0 votes
Edited
August 02, 2017 12:39
Official comment
You can achieve your goal by using a Script constraint. To start I would base this on the "methods of the class" existing template: $ReturnType$ $Method$($ParameterType$ $Parameter$); Now edi...
Community
IntelliJ IDEA Users
Trying to create a custom inspection where the regex of one variable includes another variable
0 votes
Created
July 29, 2017 12:50
It was probably something like this: final FindManager findmanager = FindManager.getInstance(project);FindModel findmodel = findmanager.getFindNextModel();if (findmodel == null) { findmodel = fi...
Community
IntelliJ IDEA Open API and Plugin Development
HighlightManager - how to enable F3 functionality
0 votes
Created
May 20, 2017 14:03
Correct, UserDataHolder information is not persisted. LocalInspectionTool must be stateless, because it will be called concurrently from multiple threads. Storing temporary state will cause problem...
Community
IntelliJ IDEA Open API and Plugin Development
Local inspection tool's session
0 votes
Created
May 20, 2017 09:10
1. Yes. You get a LocalInspectionToolSession every time your buildVisitor() method is called. This is for every inspection pass over a file or part of a file, so multiple inspections can receive th...
Community
IntelliJ IDEA Open API and Plugin Development
Local inspection tool's session
1 vote
Created
April 27, 2017 10:15
Sorry for your troubles, this is a bug: https://youtrack.jetbrains.com/issue/IDEA-172046 Bas
Community
IntelliJ IDEA Users
Structural replace to make fields with specific annotation have default visibility
0 votes
Edited
March 03, 2017 14:17
Colin, sorry I don't know. Your approach may work. You will have to try it and see. BTW vote for IDEA-142693 API for separating one inspection's results into several "virtual" inspections
Community
IntelliJ IDEA Open API and Plugin Development
Can a single global inspection add problems for multiple groups?
0 votes
Created
February 24, 2017 14:22
Having a single inspection tool report for multiple categories is currently not possible. You will have to implement a separate inspection tool for each type of problem. This also allows the user t...
Community
IntelliJ IDEA Open API and Plugin Development
Can a single global inspection add problems for multiple groups?
0 votes
Created
October 26, 2016 10:19
Official comment
Sorry, I don't know of any way to get exactly what you want. Perhaps your inspections could not show any results when the user is not logged in? You may also want to submit a feature request. Bas
Community
IntelliJ IDEA Open API and Plugin Development
Inspection Tool Provider
0 votes
Created
October 26, 2016 10:01
Official comment
Library code is not analysed by design. It makes little sense to provide warnings on code that is not strictly part of the project and can/should not be changed. Or do you have a good reason? Bas
Community
IntelliJ IDEA Open API and Plugin Development
Inspecting libraries' code, BaseJavaLocalInspectionTool doesn't work
0 votes
«
First
‹
Previous
Next
›
Last
»