Ryu Seowoong
- 活动总数 14
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 4
-
创建于 Error while executing EncapsulateFieldsProcessor
已回答Hello. I want to build a plugin that finds fields and encapsulate them (hide field and generate getter,setter, replacing direct access to getter, setter). I found that Intellij IDEA has a nice func... -
已编辑于 How do I check there is uncompleted write action or invokeLater?
已回答Hello. In order to avoid deadlock, I'm currently invoking write action like codes below. ApplicationManager.getApplication().invokeLaterOnWriteThread({ ApplicationManager.getApplication().runWri... -
已编辑于 JavaFindUsagesHelper does not find references properly directly after changing codes.
已回答Hello! I'm currently working on the plugin that finds direct access of field and converts them to getter or setter with automatically generating getter or setter. For example, when the plugin finds... -
已编辑于 Why I get IllegalArgumentException( Argument for @NotNull parameter 'manager' of com/intellij/psi/impl/source/tree/JavaSourceUtil.addParenthToReplacedChild must not be null)?
已回答I'm currently developing a plugin that search variables with "public" accessor and make them private and replace all references to getter / setter of variables. e.g. public int foo = 1; and there i...