for (Iterator it = nodes.iterator(); it.hasNext();)
{
HierarchicalConfiguration config = (HierarchicalConfiguration) it.next();
XMLBeanDeclaration decl = new XMLBeanDeclaration(config);
String key = config.getString(KEY_LOOKUP_KEY);
StrLookup lookup = (StrLookup) BeanHelper.createBean(decl);
BeanHelper.setProperty(lookup, "configuration", this);
ConfigurationInterpolator.registerGlobalLookup(key, lookup);
this.getInterpolator().registerLookup(key, lookup);
}
}