}
}
final ConstructorDefinition[] conDefs = this.objectFactory.getConstructorDefinitions();
for (int i = 0; i < conDefs.length; i++) {
final ConstructorDefinition cDef = conDefs[i];
// if this is a lookup, then ignore
if (lookups.contains(cDef.getPropertyName())) {
continue;
}
if (this.objectFactory.isPropertyDefinition(cDef.getPropertyName())) {
final PropertyDefinition pd = this.objectFactory.getPropertyDefinitionByPropertyName(
cDef.getPropertyName()
);
final XmlReadHandler handler = (XmlReadHandler) this.createdHandler.get(
pd.getElementName()
);
if (handler != null) {