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
May 21, 2007 18:24
Yes. The best way is probably to override the buildVisitor() method in LocalInspectionTool. In the custom PsiElementVisitor you return, you can override the relevant visitXmlXXX() methods.Bas
Community
IntelliJ IDEA Open API and Plugin Development
LocalInspectionTool for XML files?
0 votes
Created
January 07, 2005 01:10
I would definitely think it's possible to write such a refactoring yourself. You should probably look at the source of some simple plugins to get a feel for it. And you'll want to install the PsiVi...
Community
IntelliJ IDEA Open API and Plugin Development
Type refactoring
0 votes
Created
January 08, 2005 11:47
An EditorAction will certainly work. I should of thought of that myself, but I was a bit confused by the name. It seems to be just for actions in the editor, but in fact it's probably much easier t...
Community
IntelliJ IDEA Open API and Plugin Development
Type refactoring
0 votes
Created
January 09, 2005 18:36
I don't have IDEA in front of me right now, but calling resolve() on a PsiReferenceExpression returns the object the reference refers to, a PsiMethod in this case. You can query that for further in...
Community
IntelliJ IDEA Open API and Plugin Development
Type refactoring
0 votes
Created
January 10, 2005 15:37
Hi Thomas, coll = new ArrayList(); > > System.out.println(coll.size());]]> I now wanna check, in what PsiTypes, the method'size()' is defined. I have the PsiMethodCallExpression, which can retur...
Community
IntelliJ IDEA Open API and Plugin Development
Type refactoring
0 votes
Created
May 15, 2009 12:30
The inspection is called "Instance field not qualified with 'this'" and it has a quick fix. It is disabled by default, because not many developers want its behavior, but you can enable it in the Er...
Community
IntelliJ IDEA Open API and Plugin Development
Distinguish reference usages
0 votes
Created
May 22, 2009 13:41
mjparme wrote:Although the inspection doesn't do method calls, just members. My plugin also does methods. I searched for a inspection that did methods but there doesn't appear to be one (or I just ...
Community
IntelliJ IDEA Open API and Plugin Development
Distinguish reference usages
0 votes
Created
May 22, 2009 13:50
mjparme wrote:That seems superior to to the insertString() way I am doing. Will it perform better as well?It should perform better, but I have not tested that. It is the way all of IntelliJ IDEA's ...
Community
IntelliJ IDEA Open API and Plugin Development
Distinguish reference usages
0 votes
Created
September 21, 2009 10:39
See here:http://www.jetbrains.net/confluence/display/IDEADEV/Building+Plugins+with+IntelliJ+IDEA+7.0+and+8.0Bas
Community
IntelliJ IDEA Open API and Plugin Development
how to compile a plugin for JDK 1.5 and IntelliJ 8.x+
0 votes
Created
August 24, 2009 10:22
Hi Dave,As far as I know PsiDirectory.add() should save it to disk (be sure to use the return value of this method). See also http://www.jetbrains.net/confluence/display/IDEADEV/IntelliJ+IDEA+Archi...
Community
IntelliJ IDEA Open API and Plugin Development
Faulting a newly created PsiFile to disk
0 votes
«
First
‹
Previous
Next
›
Last
»