How can I change the objects passed as an argument, and that
invocation is intercepted again?
public Object invoke(MethodInvocation invocation) throws Throwable
{
System.out.println(this.getClass().getName());
Method method = (Method)invocation.getStaticPart();
return method.invoke(invocation.getThis(),
invocation.getArguments());
}
Im try return "invocation.proceed()" but not work....
Thank's
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"google-guice" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-guice?hl=en
-~----------~----~----~----~------~----~------~--~---