主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Bas Leijdekkers
活动总数
1072
最后的活动
2024年03月14日 19:13
成员加入日期
2003年05月15日 14:47
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
426
活动概览
文章(0)
帖子(41)
评论(605)
按最近的活动排序
最近的活动
投票数
创建于
2007年05月21日 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
社区
IntelliJ IDEA Open API and Plugin Development
LocalInspectionTool for XML files?
0 票
创建于
2005年01月07日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Type refactoring
0 票
创建于
2005年01月08日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Type refactoring
0 票
创建于
2005年01月09日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Type refactoring
0 票
创建于
2005年01月10日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Type refactoring
0 票
创建于
2009年05月15日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Distinguish reference usages
0 票
创建于
2009年05月22日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
Distinguish reference usages
0 票
创建于
2009年05月22日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
Distinguish reference usages
0 票
创建于
2009年09月21日 10:39
See here:http://www.jetbrains.net/confluence/display/IDEADEV/Building+Plugins+with+IntelliJ+IDEA+7.0+and+8.0Bas
社区
IntelliJ IDEA Open API and Plugin Development
how to compile a plugin for JDK 1.5 and IntelliJ 8.x+
0 票
创建于
2009年08月24日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Faulting a newly created PsiFile to disk
0 票
«
第一页
‹
上一页
下一页
›
最后
»