1 package org.neo.swarm.core.aop.silc.comp;
2
3 import java.io.Serializable;
4 import java.lang.reflect.Method;
5
6 import org.aopalliance.intercept.MethodInvocation;
7
8 /***
9 * @author damiang
10 * @author navery
11 */
12 public interface Invocation extends Serializable, MethodInvocation {
13 // Object[] getArguments();
14 void setArguments(Object[] args);
15 // TODO: move to the
16
17 Object getKey();
18 // Method getMethod();
19 // Object proceed() throws Throwable;
20 void setMethod(Method method);
21 //- void setTarget(Object o);
22 // Object getThis();
23 }