Hani Suleiman
- 活动总数 1008
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 380
-
创建于 Late night PSI fun
Some PSI question, apologies if these are basic questions that are blindingly obvious. I couldn't find any docs after a cursory search:1) Given a PsiClass that extends Class X, how do I make it not... -
创建于 String concat in a loop annoyance
Does anyone find this inspection to be a bit..dumb?I have code like this in a number of places:for(item : items) collection.add(prefix + item);This looks like a perfectly legitimate practice to me,... -
创建于 PluginManager calls
When I try to call PluginManager (to get at the classpath for my plugin), I always get the exception below. Nowhere in my project so I have 'com.intellij.component' so I'm rather baffled as to how ... -
创建于 Default JDK on OSX
...is 1.4. Is there any reason why the Info.plist file isn't changed to 1.5+?In theory, it shouldn't matter, but in practice it does. For example, it becomes impossible to create a 1.5 plugin JVM. -
创建于 Looking up annotations
How do I look up annotations on a class or method? I can figure out if a given PsiClass is an annotation, but I also need to be able to look up the annotations specified on a given field/method/class. -
创建于 RCOD (Red Circle of Doom)
Lately I've finding that I am getting angrier and angrier with the RCOD. I don't know if it's that time of the month, or if there's something more sinister at play, but the damn thing really really... -
创建于 Deleting plugins...permanently
Is anyone else annoyed by constantly having to delete plugins with every eap? I know I'll never need the tomcat, weblogic, starteam, or sourcesafe plugins, so the first thing I do with every eap is... -
创建于 3311 Fun with cloning
Ahem, not that I want to teach you guys java or anything, but the openAPI has a rather silly method:com.intellij.j2ee.run.configuration.ServerModel implements Cloneable, and has the method: com.in... -
创建于 serialVersionUID error highlighting
Does anyone else find this particular error detector intensely annoying?I mean, I'd love to turn it on, but I keep naively expecting it to provide me with an intention action to actually create a s... -
创建于 intentions and concurrency
I've just noticed a very dangerous detection in IDEA, any thoughts on this?Consider this:if(this.blah != null){ Blah myblah = this.blah; if(myblah != null && xyz) { ....I might be mistaken, b...