Class ChainBuilderImpl
- java.lang.Object
 - 
- org.apache.tapestry5.ioc.internal.services.ChainBuilderImpl
 
 
- 
- All Implemented Interfaces:
 ChainBuilder
public class ChainBuilderImpl extends Object implements ChainBuilder
 
- 
- 
Constructor Summary
Constructors Constructor Description ChainBuilderImpl(PlasticProxyFactory proxyFactory) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Tbuild(Class<T> commandInterface, List<T> commands)Creates a chain instance from a command interface and a list of commands (implementing the interface). 
 - 
 
- 
- 
Constructor Detail
- 
ChainBuilderImpl
public ChainBuilderImpl(@Builtin PlasticProxyFactory proxyFactory)
 
 - 
 
- 
Method Detail
- 
build
public <T> T build(Class<T> commandInterface, List<T> commands)
Description copied from interface:ChainBuilderCreates a chain instance from a command interface and a list of commands (implementing the interface).- Specified by:
 buildin interfaceChainBuilder- Type Parameters:
 T- the command interface type- Parameters:
 commandInterface- the command interfacecommands- the list of commands to be chained- Returns:
 - the chain instance
 
 
 - 
 
 -