I have a pointcut which listens to access to an field in DBRow and all subclasses
before(DBRow targ) throws DBException: get(@InDB * DBRow+.*) && target(targ) {
targ.load();
}
I now need to determine the value of the accesed field, that is specified by the get pointcut. Is this possible in AspectJ?