What is CodeSignature in Aspect J? I tried to find JavaDocs but did not find anything useful. For the instance, your next signature is CodeSignature:
pointcut log() : execution(@Log * *(..)); before() : log() { String[] names = ((CodeSignature) thisJoinPoint.getSignature()).getParameterNames(); }
Is there a JoinPoint connection such that thisJoinPoint.getSignature() , which is not CodeSignature ?
source share