org.apache.commons.collections
Interface Closure

public interface Closure
Defines a functor interface implemented by classes that do something.

A Closure represents a block of code which is executed from inside some block, function or iteration. It operates an input object.

Standard implementations of common closures are provided by ClosureUtils . These include method invokation and for/while loops.

SinceCommons Co
Version$Revision:
AuthorJames Strachan, Nicola Ken Barozzi, Stephen Colebourne
Wiki javadoc Use textile entry format.
Add your comments here.
Method Summary
void execute( Object input )
Performs an action on the specified input object.
execute
public void execute ( Object input )
Performs an action on the specified input object.
Parameters
TypeNameDescription
Object input the input to execute on
Returns void No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.