Vitaliy Morarian
- 活动总数 8
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 4
-
-
Vitaliy Morarian 创建了一个帖子, Structural replace -- fields rename by pattern
I want to rename all fields in mine VO classes -- they have 'm_' prefix which I'd like to remove.Now:private ReportTemplate m_reportTemplate;Should be:private ReportTemplate reportTemplate;I've tri... -
Vitaliy Morarian 创建了一个帖子, Unexpected PsiInvalidElementAccessException on psiClass.getSuperTypes()
I'm getting exception during invication of psiClass.getSuperTypes()...and have no idea what is wrongIntelliJ IDEA 8.1.3#9886 built at 17/06/2009Error message: Element: class com.intellij.psi.impl.s... -
Vitaliy Morarian 创建了一个帖子, Use isAssignableFrom via Collections
Hello,I have custom inspection which checks types. It works fine except one case -- checking of CollectionsProblem is insomeType.isAssignableFrom(someOtherType)where someType and someOtherType are ...