I have a sealed parent class with one open value. ...
# tornadofx
i
I have a sealed parent class with one open value. 2 child classes implement it, overriding that value. And I want to make something happen to the value upon object creation. Dont know how to achieve that.
r
Did the init block not work?
i
in the init block of the parent, the values of the child are not assigned 😕
r
so you want to do something with the overridden values from the child in the parent? Seems like a super special use case. Is it possible to do the same in a different way? Like have just a setter and not expose the whole value?