/** Push new DecoratorMapper onto end of chain. */
protected void pushDecoratorMapper(String className, Properties properties) {
try {
Class decoratorMapperClass = ClassLoaderUtil.loadClass(className, getClass());
DecoratorMapper newMapper = getDecoratorMapper(decoratorMapperClass);
newMapper.init(config, properties, decoratorMapper);
decoratorMapper = newMapper;
}
catch (ClassNotFoundException e) {
throw new FactoryException("Could not load DecoratorMapper class : " + className, e);
}