I want to intercept all field modifications on a class:

pointcut fieldMutator(TestObject o, Object v): set(* TestObject.*) &&
this(o) && args(v);

This gets me the object and the new value, but how do I get which
field is being modified?

Thanks.
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to