Package spoon.reflect.visitor.chain
Interface CtConsumer<T>
-
- Type Parameters:
T
- - the type of accepted elements
public interface CtConsumer<T>
The functional interface used to receive objects. It is used for example to receive results of the query inCtQuery.forEach(CtConsumer)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(T t)
Implement this method to do something with object "t" passed as parameter
-
-
-
Method Detail
-
accept
void accept(T t)
Implement this method to do something with object "t" passed as parameter
-
-