W
Wojtek
It is trivial to test if a class implements/extends a class, if you
already know the name of that class.
But how do you find all the super/interfaces which a given class
extends/implements?
What I am trying to do is scan a Map which contains all my DB table
classes (one class per table). I want to be able to list all the
super/interfaces:
TableClass Super Implements
-------------------------------------
Person
Data SuperData
Data2 DataImp
DataImp2
and so on.
already know the name of that class.
But how do you find all the super/interfaces which a given class
extends/implements?
What I am trying to do is scan a Map which contains all my DB table
classes (one class per table). I want to be able to list all the
super/interfaces:
TableClass Super Implements
-------------------------------------
Person
Data SuperData
Data2 DataImp
DataImp2
and so on.