107108109110111112113
* A service that implements the chain of command pattern, creating an efficient implementation * of a chain of command for an arbitrary interface. */ public ChainBuilder buildChainBuilder() { return new ChainBuilderImpl(_classFactory); }
104105106107108109110