Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Which field is being accessed

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.


Back to the top