KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > reflect > code > CtInvocation


1 package spoon.reflect.code;
2
3 /**
4  * This code element defines a concrete invocation.
5  * @param <T> Return type of this invocation
6  */

7 public interface CtInvocation<T> extends CtAbstractInvocation<T>, CtStatement,
8         CtTargetedExpression<T,CtExpression<?>> {
9
10 }
11
Popular Tags