If I want to partially / gradually make changes to the .java class with my Kotlin additions / changes.
First, is it possible? I do not want to immediately translate the class through hotkey .
Secondly, how best to do it.
You cannot make changes to the java class by embedding kotlin code into it, because kotlin creates its class with kt extension. You can either write a full class on kotlin or write extensions for java classes on kotlin
Source: https://ru.stackoverflow.com/questions/599902/
All Articles