return;
}
processed = true;
// Add the create bean visitor...
SmooksResourceConfiguration creatorConfig = visitorMap.addVisitor(beanInstanceCreator, createOnElement, targetNamespace, true);
creatorConfig.setParameter("beanId", getBeanId());
creatorConfig.setParameter("beanClass", beanClass.getName());
// Recurse down the wired beans...
for(Bean bean : wirings) {
bean.addVisitors(visitorMap);
}
// Add the populate bean visitors...
for(Binding binding : bindings) {
SmooksResourceConfiguration populatorConfig = visitorMap.addVisitor(binding.beanInstancePopulator, binding.selector, targetNamespace, true);
populatorConfig.setParameter("beanId", getBeanId());
if(binding.assertTargetIsCollection) {
assertBeanClassIsCollection();
}
}
}