org.apache.commons.collections
Interface Closure
- ChainedClosure, ExceptionClosure, ForClosure, IfClosure, NOPClosure, SwitchClosure, TransformerClosure, WhileClosure
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.
$Revision: 155406 $ $Date: 2005-02-26 12:55:26 +0000 (Sat, 26 Feb 2005) $- James Strachan
- Nicola Ken Barozzi
- Stephen Colebourne
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.
input - the input to execute on
Copyright © 2001-2008 Apache Software Foundation. All Rights Reserved.