Martin Zardecki
- 活动总数 43
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 14
-
创建于 "Find Usage..." appears to hang (a lot)
I have a simple class within a large project with a simple String constant like...public static final String DENTAL = "DENTAL";...If I put my cursor on MyClass.DENTAL and do a "Find Usages" IDEA ap... -
创建于 Auto-boxing inspection glitch?
Hi gang I have the Auto-boxing and Auto-unboxing inspection turned on but when I have code such asLong benbid = Long.valueOf(1); // For exampleif (benbid == null || benbid < 0) { // <== why isn't ... -
创建于 How to search selected text only?
已回答Hi, before the search bar it seems to me we used to be able to search only on selected text via the search dialog.I can't seem to find this feature anymore and if it doesn't exist I'd like to see i... -
创建于 Enum comma being reported as an error
I have an enum such as {A.class, B.class,} // NOTE THE TRAILING COMMAI have language level set to Java 5.0 for my project.As far I've read the trailing comma is legal but IDEA is reporting it as an... -
创建于 Can I access and use the IDEA Data Sources?
Creating a plugin that will connect to a DB and do stuff (read data only). Is there a way to use data sources defined in IntelliJ? Easier than writing my own data source and connection management s... -
创建于 ToolWindow Help pls...
Hey gang, it's been a while since I wrote my last plugin and am looking for a bit of a refresher.How can I read keyboard input from/in a ToolWindow and how can I dump text output back to my ToolWin... -
创建于 JForm Integration
Hi, I released the initial revisions of my JFormdesigner Integration plugin.It's in the plugins repository enjoy.Feedback welcome at mpzarde@truecool.comCould someone from JetBrains delete the 1.0 ... -
创建于 "New" Action position
Hi, almost there with my first plugin :)One esoteric issue is that I'm trying to add one of my actions to the ProjectViewPopupMenu in the NewGroup.I have my Action defined in plugin.xml as: ... -
创建于 YACQ
Yeat Another Class Loader QuestionI'm trying to write a plugin which interfaces to a third party commercial product.This product exposes an API to load and edit IDEA project files via a set of jar ... -
创建于 FileChooser from ApplicationComponent
Hi, trying to open IDEA's FileChooser from within an ApplicationComponent for a one time initialization of my Plugin i.e. when first run.FileChooser takes either a Project or a java.awt.component a...