dimsuz
05/12/2016, 2:10 PMfinal which then does some work and calls some abstract function defined in current class. I.e I need a way to enforce calling a super method to ensure some contract is working in all subclasses. Android-Java plugin provides another way by supporting a convenient @CallSuper annotation which forces overridden methods to contain calls to a super method, but Kotlin doesn't support this, so I have to use some pattern...