主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Nikolay Chashnikov
活动总数
838
最后的活动
2023年11月23日 11:52
成员加入日期
2007年11月13日 10:36
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
334
活动概览
文章(0)
帖子(1)
评论(503)
按最近的活动排序
最近的活动
投票数
创建于
2017年09月25日 14:10
Looks like you have some problem with your network connection, cloning that repository works ok for me.
社区
IntelliJ IDEA EAP Users
Unable to clone community git repository
0 票
创建于
2017年09月20日 11:30
UnresolvedReferenceQuickFixProvider is an extension point, so you should register your implementation in plugin.xml file like you did for createFieldFromUsageHelper, I've added javadoc about it.
社区
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 票
创建于
2017年09月20日 10:37
Android Studio includes java support so your plugin is indeed compatible with it. If it uses some functionality which isn't present in Android Studio you need to add dependencies on corresponding m...
社区
IntelliJ IDEA Open API and Plugin Development
Incorrect compatible products appears in plugin repository
0 票
创建于
2017年09月13日 06:36
You can provide implementation of com.intellij.codeInsight.quickfix.UnresolvedReferenceQuickFixProvider extension for PsiJavaCodeReferenceElement to do that.
社区
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 票
创建于
2017年09月12日 07:44
Could you please describe that exactly do you want to do with the plugin? Do you want to generate a Java class from scratch? Or you want to add a field to an existing class? Anyway, you don't need ...
社区
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 票
创建于
2017年09月11日 11:26
It's possible to make IDE use your language extension instead of default one by adding order="first" attribute to its xml tag. However it's risky, when something changes in the standard implementat...
社区
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 票
创建于
2017年09月08日 08:47
There are hundreds of ways you can embed something into IDEA with the use of plugin.xml. Is that Swing-GUI part of your own dialog? If so how is it invoked, from the main menu, or from some popup m...
社区
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 票
创建于
2017年09月08日 08:21
Then how your Swing-GUI is invoked from IDEA?
社区
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 票
创建于
2017年09月05日 15:50
It's an instance of Project. If your code is invoked inside AnAction, you can get instance of the current project from AnActionEvent#getProject.
社区
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 票
创建于
2017年09月05日 15:23
If you want to get location of source roots, try the following: ModuleRootManager.getInstance(ModuleManager.getInstance(p).getModules()[0]).getSourceRoots() It'll return locations of all source roo...
社区
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 票
«
第一页
‹
上一页
下一页
›
最后
»