<@U3K0MNQR1|dsgryazin> uploaded a file: <https://k...
# intellij
d
@User uploaded a file:

Снимок экрана 2016-12-27 в 17.59.47.png

and commented: Why my Android Studio 2.2.3 + Kotlin 1.0.5 doesn't have
Generate Delegate methods
options in
Generate
options menu?
Copy code
class ExampleDelegator : SomeInterfaceWithMethodsAandB {

    @Inject lateinit var delegatee: SomeInterface

    //wanna delegate methodA only, but suddenly no generate delegate methods found in menu. Why???

}
I am aware of
by
keyword, but it delegates the whole interface, while I need to wrap some of them before. *Question: * is it feature or it is because of incomplete gradle plugin?