1 package spoon.reflect.code;2 3 /**4 * This code element defines a concrete invocation.5 * @param <T> Return type of this invocation6 */7 public interface CtInvocation<T> extends CtAbstractInvocation<T>, CtStatement,8 CtTargetedExpression<T,CtExpression<?>> {9 10 }11