Ryu Seowoong
- Total activity 14
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
-
Ryu Seowoong created a post, AnsweredError 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... -
-
Ryu Seowoong created a post, AnsweredHow 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... -
-
-
Ryu Seowoong created a post, AnsweredJavaFindUsagesHelper 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... -
Ryu Seowoong commented, -
Ryu Seowoong commented, -
-
Ryu Seowoong created a post, AnsweredWhy 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...