Я конвертирую шаг за шагом, но не могу сделать это сразу.
У меня есть Java класс:
Код: Выделить всё
public abstract class DefaultHomePage {
abstract public CustomType getCustomType();
}
Код: Выделить всё
class ProductHomePage : DefaultHomePage() {
@Inject
lateinit var customType: CustomType
override fun getCustomType(): CustomType {
return customType
}
}
Есть идеи, как исправить это?
Подробнее здесь: https://stackoverflow.com/questions/785 ... -signature
Мобильная версия