主页
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年12月21日 12:46
141.* is IntelliJ IDEA 14.1 version which was released 3 years ago. It indeed doesn't have this class. Do you really need to develop a plugin for such an old version?
社区
IntelliJ IDEA Open API and Plugin Development
Build artifact from a directory after poststartupactivity
0 票
创建于
2017年12月21日 07:13
The full name of class is com.intellij.task.ProjectTaskManager. If you don't have such a class, it means that your plugin project isn't configured properly. How did you set it up? Do you write it u...
社区
IntelliJ IDEA Open API and Plugin Development
Build artifact from a directory after poststartupactivity
0 票
创建于
2017年12月21日 07:07
In order to get dependencies of you project you need to use com.intellij.openapi.roots.ModuleRootManager class. ModuleRootManager.getInstance(module).orderEntries().forEachLibrary() will process li...
社区
IntelliJ IDEA Open API and Plugin Development
Fetching content of resource folder of dependent JAR via IntelliJ plugin
0 票
创建于
2017年12月20日 07:07
You can use ProjectTaskManager#build(Artifact[]) for that.
社区
IntelliJ IDEA Open API and Plugin Development
Build artifact from a directory after poststartupactivity
0 票
创建于
2017年12月18日 08:15
Hello, if you're creating a project from a directory you should also create a module and add a content root in it (see our help for details). You can use ModuleManager to create a module and Module...
社区
IntelliJ IDEA Open API and Plugin Development
New Project from existing Directory not showing Directories
0 票
创建于
2017年12月13日 07:04
Yes, SDK editor is located in Project Structure dialog which is available in IntelliJ IDEA only. However adding a facet isn't enough to fix this because facet editors are also located in Project St...
社区
IntelliJ IDEA Open API and Plugin Development
Facet for Custom Language SDK in Rubymine
0 票
创建于
2017年12月11日 07:20
I'm not quite understand what do you mean by "i want take them from plantuml plugin". You may add dependency on plantuml plugin and add your actions into menus registered in plantuml plugin.
社区
IntelliJ IDEA Open API and Plugin Development
creating a new plugin
0 票
创建于
2017年12月04日 14:24
You shouldn't perform any actions which depend on settings in 'initComponent' method, because settings may be changed after IDE is started, and in that case 'loadState' will be called again but 'in...
社区
IntelliJ IDEA Open API and Plugin Development
It is possible to get config from `loadState` before running `initComponent` ?
0 票
创建于
2017年12月04日 07:52
Which version of IntelliJ IDEA do you use to open and build IDEA project?
社区
IntelliJ IDEA Open API and Plugin Development
Unable to build community edition
0 票
创建于
2017年11月29日 07:23
You can dynamically load an extension via Extensions.getRootArea().registerExtension(). However it may be simpler to just check if the option is enabled in 'annotate' method and do nothing if the f...
社区
IntelliJ IDEA Open API and Plugin Development
It is possible to dynamically add or remove annotator section in extensions ?
0 票
«
第一页
‹
上一页
下一页
›
最后
»