Martin Zardecki
- Total activity 43
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 14
-
Created "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... -
Created 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 ... -
Created How to search selected text only?
AnsweredHi, 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... -
Created 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... -
Created 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... -
Created 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... -
Created 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 ... -
Created "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: ... -
Created 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 ... -
Created 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...