/* 325 */ for (RuntimeElementInfo n : typeSet.getAllElements()) {
/* 326 */ ElementBeanInfoImpl bi = getOrCreate(n);
/* 327 */ if (n.getScope() == null) {
/* 328 */ this.rootMap.put(n.getElementName(), bi);
/* */ }
/* 330 */ RuntimeClassInfo scope = n.getScope();
/* 331 */ Class scopeClazz = scope == null ? null : (Class)scope.getClazz();
/* 332 */ Map m = (Map)this.elements.get(scopeClazz);
/* 333 */ if (m == null) {
/* 334 */ m = new LinkedHashMap();
/* 335 */ this.elements.put(scopeClazz, m);
/* */ }