| Stores the information about all calls to the target object
in the list. Clients can examine the list to see the parameters of the calls.
Example of usage:
InvocationRecorder recorder = new InvocationRecorder();
aspectSystem.add( new ClassPointcut( SampleHelper.class, false), recorder);
InvocationContext dummyMethodInvocation = recorder.findByTargetMethod( "dummyMethod");
assertNotNull(dummyMethodInvocation);
author: Alexander Ananiev |