主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
简体中文
English (United States)
登录
Andreas Schaefer
活动总数
24
最后的活动
2018年07月03日 08:19
成员加入日期
2015年03月26日 15:16
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
7
活动概览
帖子(7)
评论(10)
按最近的活动排序
最近的活动
投票数
创建于
2018年07月02日 15:23
Hello Yaroslav No, I just use the com.intellij.openapi.vcs.CodeSmellDetector.CodeSmellDetector.getInstance(project); in my plugin. What I want to know is how to I make the thread read-only. Rea...
社区
IntelliJ IDEA Open API and Plugin Development
Cannot run Code Smell Detector in File Change Event anymore
0 票
创建于
2015年06月04日 16:34
Thanks that did the trick. If anybody needs to know how I did it this is the code: private static final FileAttribute MODIFICATION_STAMP_FILE_ATTRIBUTE = new FileAttribute("modificationStampFileAtt...
社区
IntelliJ IDEA Users
Persist User Data on a Virtual File
0 票
创建于
2015年03月29日 00:54
I tried also on OpenSuSE with Java 1.7 and it still fails the same way.
社区
IntelliJ IDEA Open API and Plugin Development
HotSwap Fails due to 'delete method not implemented'
0 票
创建于
2015年03月30日 22:56
I delved into the issue a little bit further and so I want to clarify a few things.1. I did not try that with official Apache Sling but Adobe AEM 6.0 which is based on Sling.2. I tried multiple Jav...
社区
IntelliJ IDEA Open API and Plugin Development
HotSwap Fails due to 'delete method not implemented'
0 票
创建于
2015年06月16日 16:43
Thanks for the reply. I did the follwoing:1. Create the Maven Importer and define it in the plugin.xml: <extensions defaultExtensionNs="org.jetbrains.idea.maven"> <importer implementation="com.h...
社区
IntelliJ IDEA Open API and Plugin Development
Listen to Maven Build Events
0 票
创建于
2015年06月16日 17:48
Yes, that was the idea.But what I need is to know when an Artifact (JAR file) has changed to display the change in my plugin. I guess I could accmplish the same thing with a VirtualFileListener to ...
社区
IntelliJ IDEA Open API and Plugin Development
Listen to Maven Build Events
0 票
创建于
2015年07月08日 21:55
Thaks. that worked fine. I had to change my code because of some of the restrictions (Dispatcher but not Write Access Thread).
社区
IntelliJ IDEA Open API and Plugin Development
Checking Java Files for Errors
0 票
创建于
2015年06月16日 19:36
I just did that and it works with excluded target (build directory) folder under IntelliJ 14 CE.Thanks for your help - Andy
社区
IntelliJ IDEA Open API and Plugin Development
Listen to Maven Build Events
0 票
创建于
2015年07月22日 18:31
I know but that requires the Archetypes to be added to the User Archetypes.What I want is to parse the Remote Maven Repository to discover the Archetypes dyrnically.What I am looking for is to find...
社区
IntelliJ IDEA Open API and Plugin Development
Dynamically Discover Maven Archetypes
0 票
创建于
2016年03月01日 20:56
I finally figured it out. The issue was that I used a Task.Modal in the Progress Manager which is executed on the Dispatcher Thread hence the deadlock. Switching to Task.Backgroundable() to execu...
社区
IntelliJ IDEA Open API and Plugin Development
Execute a Maven Build from a Plugin Action
0 票