For all AspectCocoa related purposes, an ACInvocation is the same thing as an NSInvocation except that it is not actually an NSInvocation (not a subclass of NSInvocation). Otherwise it has nearly the same interface.
/* Returns the NSMethodSignature object describing the method to be invoked. */
/* set/get the selector to be invoked on the target */
/* set/get the target of the invocation */
/* returns the class containg the method for which this invocation was created note that this may or may not the same class as invocation target] class]; (which will always return the lowest level class of the object.) */
/* set/get the target of the invocation */
/* set/get the return value or argument values of the invocation same usage as on NSInvocation */
[[Category:PointlessInformation