|
I've used
Abator to generate the java Classes which represent the DB
table.
There is a
Class representing the table, and another Class representing the primary key of
the table.
I want to get
all the column values using the getters, but if I use
getClass().getDeclaredMethods() or getClass().getDeclaredFields(), i don't get
the primary key.
I solve this
with :
getClass().getSuperclass().getDeclaredFields()
or
getClass().getSuperclass().getDeclaredMethods()
My question
is: Is there another way (config?) to achieve this?
|
- Abator generated Classes: How to get all getters(prim... Vicente Tarín Font
