I have a class in Java, I wish to reflect all subclasses of this class, how would I do this?
In this specific case, all subclasses are in the same package, and ...
I'm playing around with Java's reflection API and trying to handle some fields. Now I'm stuck with identifying the type of my fields. Strings are easy, just do myField.getType().equals(String.class). The same ...
I have a Forum class with some subclasses, and I store the subclass name as a String field on a database along all other fields. When I retrieve the object, I ...
I try to use a simple example for better undersanding: I've got a class Tool and child classes which are extending class Tool: Hammer, Saw. Both have defined some fields like ...
I have a hierarchy of so named Attribute classes, that represents single properties of my Domain Model. Each of this Attribute classes has a unique String id property.
I Also have an ...