Hi,
I would like to identify a custing operation from AspectJ. For example, I would like to make the following code:
Code:
MyObject myObj = (MyObject)obj;
to behave like:
Code:
MyObject myObj = (MyObject)doMyProcessing(obj);
Is there a way to do it in AcpectJ?
Thanks,
Daniel