Extending com.intellij.execution.configurations.RunConfigurationOptions in Java Plugin Implementation
Answered
I'm developing a Run Configuration for Intellij IDEA. I have extended the com.intellij.execution.configurations.RunConfigurationOptions for the RunConfigurationOptions but none of the my options are persisted into the JDOM element. When debuging i found out that com.intellij.execution.configurations.RunConfigurationOptions and its subtypes which are kotlin classes uses something called property delegates. How can i implement this to work in Java ?
Please sign in to leave a comment.
I would suggest to use kotlin class for serialization. What is your base class for run configuration?
Yes the kotlin class option works perfect. i took that root and implement the plugin without any further problems. Thanks
I tried with kotlin but still not working. What am I missing?