How do I get parameter type of a parameterized cla...
# getting-started
v
How do I get parameter type of a parameterized class? E.g. from
TableColumn<RowType, CellType>
I need to get
CellType
and use it as a parameter in another parameterized class, if it is possible
Copy code
val y = TableColumn<RowType, CellType>("")
val x: TableColumn<S, T> = y
(but it's not true), then it should be
val z = SimpleObjectProperty<T>()