/* 100 */ for (i$ = this.properties.entrySet().iterator(); i$.hasNext(); ) { Object o = i$.next();
/* */
/* 102 */ Map.Entry entry = (Map.Entry)o;
/* 103 */ String property = (String)entry.getKey();
/* 104 */ ValueMetaData vmd = (ValueMetaData)entry.getValue();
/* 105 */ TargettedJoinpoint jp = this.configurator.getPropertySetterJoinPoint(info, property, cl, vmd);
/* 106 */ jp.setTarget(result);
/* 107 */ jp.dispatch();
/* */ }
/* */ }
/* 110 */ invokeLifecycle("create", this.create, info, cl, result);
/* 111 */ invokeLifecycle("start", this.start, info, cl, result);
/* 112 */ return result;