Interface CtInvocation<T>

Type Parameters:
T - Return type of this invocation
All Superinterfaces:
Cloneable, CtAbstractInvocation<T>, CtActualTypeContainer, CtCodeElement, CtElement, CtExpression<T>, CtQueryable, CtStatement, CtTargetedExpression<T,​CtExpression<?>>, CtTypedElement<T>, CtVisitable, FactoryAccessor, Serializable, SourcePositionHolder, TemplateParameter<T>
All Known Implementing Classes:
CtInvocationImpl

public interface CtInvocation<T> extends CtAbstractInvocation<T>, CtStatement, CtTargetedExpression<T,​CtExpression<?>>, CtActualTypeContainer
This code element defines a concrete invocation. Example:
     // invocation of method println
     // the target is "System.out"
     System.out.println("foo");