Vitaliy Morarian
- Total activity 8
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
-
Created 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... -
Created 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... -
Created 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 ...