The line:
test.address.postal_code = "12345";
will result in a flow like:
before-get test.address
return test.address
after-get test.address
before-set test.address.postal_code
set postal_code
after-set test.address.postal_code
in AspectJ. Is there a pointcut that will have test as target (like before-get test.adddres and after-get test.address) but will occur after "after-set test.address.postal_code" ?