1 package alt.jiapi.jazzpect.interceptor; 2 3 import java.lang.reflect.AccessibleObject ; 4 5 10 abstract class Invocation implements org.aopalliance.intercept.Invocation { 11 private Object _this; 12 private Object [] args; 13 private AccessibleObject staticPart; 14 15 Invocation(Object _this, Object [] args, AccessibleObject staticPart) { 16 this._this = _this; 17 this.args = args; 18 this.staticPart = staticPart; 19 } 20 21 public Object [] getArguments() { 22 return args; 23 } 24 25 public AccessibleObject getStaticPart() { 26 return staticPart; 27 } 28 29 public Object getThis() { 30 return _this; 31 } 32 } 33 | Popular Tags |