I am in the process of updating my code base to Java 5. I have the following class hierarchy in the original code base (details omitted for brevity): Code: public abstract class BasicDeal { public ...
Due to Java’s Reflection API we have been able to inspect and alter program execution at runtime. In particular, we can observe interfaces/classes/methods and fields at runtime without knowing their ...