Kotlin Generics: Lifecycle-level storage for multiple instances of Class<T> where T is different for each instance
Im trying to make an abstract FormFragment to reuse for all my forms in future proyects.
Almost everything about the generics are ok as class level parameters goes.
But im trying to implement the following idea:
I want that my Abstract fragment implements a class-level attribute that stores 1...N "BaseAdapter< T >" where T is my entity wich may (will) vary for each BaseAdapter.
I'm done implementing this with only one BaseAdapter< T > because i can straight fordward use the main < T > i sent...