I want to add some debugging code to an already compiled java class while not touching the original class. I'm thinking of using AspectJ, but I just want to know if it is possible, and if so how?
Example: class A contains void main() which does stuff and calls method sum(). aspect B adds println() to before A.sum() I want to run class A with aspect B's modification without editing A in any way.