Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Nikolay Chashnikov
Total activity
838
Last activity
November 23, 2023 11:52
Member since
November 13, 2007 10:36
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
334
Activity overview
Articles (0)
Posts (1)
Comments (503)
Sort by recent activity
Recent activity
Votes
Created
September 25, 2017 14:10
Looks like you have some problem with your network connection, cloning that repository works ok for me.
Community
IntelliJ IDEA EAP Users
Unable to clone community git repository
0 votes
Created
September 20, 2017 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.
Community
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 votes
Created
September 20, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Incorrect compatible products appears in plugin repository
0 votes
Created
September 13, 2017 06:36
You can provide implementation of com.intellij.codeInsight.quickfix.UnresolvedReferenceQuickFixProvider extension for PsiJavaCodeReferenceElement to do that.
Community
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 votes
Created
September 12, 2017 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 votes
Created
September 11, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 votes
Created
September 08, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
Created
September 08, 2017 08:21
Then how your Swing-GUI is invoked from IDEA?
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
Created
September 05, 2017 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.
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
Created
September 05, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
«
First
‹
Previous
Next
›
Last
»