主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Brian Faris
活动总数
75
最后的活动
2021年04月09日 21:56
成员加入日期
2016年02月18日 17:40
关注
0 名用户
关注者数
0 名用户
投票数
3
订阅数
30
活动概览
帖子(7)
评论(35)
按最近的活动排序
最近的活动
投票数
创建于
2020年05月10日 16:40
Here is my implementation that I use, all state that is persisted is stored in the fields of the PersistentStateComponent. @State( name = "SettingsService", storages = { ...
社区
IntelliJ IDEA Open API and Plugin Development
Can't serialize instance of class, Caused by: IllegalArgumentException: wrong number of arguments
0 票
已编辑于
2020年05月10日 15:55
Try changing this method to: @Overridepublic void loadState(@NotNull SettingsProvider state) { XmlSerializerUtil.copyBean(state, this);} Class declaration can just be: public class SettingsProvider...
社区
IntelliJ IDEA Open API and Plugin Development
Can't serialize instance of class, Caused by: IllegalArgumentException: wrong number of arguments
0 票
已编辑于
2020年04月29日 20:57
You can add: updateSinceUntilBuild false to intellij task in build.gradle file.Then in plugin.xml, only include the since-build element. Note that this necessarily won't make the plugin "compatible...
社区
IntelliJ IDEA Open API and Plugin Development
How to make pycharm plugin compatible with any new version?
0 票
已编辑于
2020年04月29日 16:28
You can get a handle to the PsiMethod then have it accept a JavaRecursiveElementVisitor. It has other methods you can override like visitParameter, etc. method.accept(new JavaRecursiveElementVisito...
社区
IntelliJ IDEA Open API and Plugin Development
How to parse psiMethod.getBody to find something
0 票
创建于
2020年04月29日 13:36
That clears that up, thanks Yann.
社区
Marketplace Paid Plugins
IntelliJ Platform Version for Building
0 票
创建于
2020年04月27日 14:43
Perfect, thanks.
社区
IntelliJ IDEA Open API and Plugin Development
Plugin updates for legacy versions.
0 票
创建于
2020年04月27日 14:14
Thanks for the answer Jakub. Should we be building with the same platform version that we are targeting? For example, a plugin that targets 2019.3, I would build with 2019.3.
社区
IntelliJ IDEA Open API and Plugin Development
Plugin updates for legacy versions.
0 票
创建于
2020年04月22日 20:01
I believe you are looking for icons.jar > nodes/ModuleProgramatically, it's:AllIcons.Nodes.Module
社区
IntelliJ IDEA Open API and Plugin Development
Where can I find the Module icon ?
0 票
已编辑于
2020年04月18日 10:49
You should be able to get the JBLabel you are trying to edit from AnActionEvent parameter using: JBLabel label = (JBLabel) anActionEvent.getPresentation().getClientProperty(CustomComponentAction.CO...
社区
IntelliJ IDEA Open API and Plugin Development
How to manually update AnAction?
0 票
已编辑于
2020年04月13日 17:20
Yes, you would create a branches in VCS/Git for 2019.2, 2019.3 and 2020.1. You can create a git repository for 2020.1 and then create the other specified branches off of it. That way they can have ...
社区
IntelliJ IDEA Open API and Plugin Development
Deprecated API usage and new IntelliJ versions
0 票
«
第一页
‹
上一页
下一页
›
最后
»