: null;
targetCollection.add(destinationTarget);
}
CollectionProperty targetProperty = (CollectionProperty) targetDescriptor
.getProperty(property.getName());
targetProperty.writeProperty(target, null, targetCollection);
}
}
return true;
}
public boolean visitProperty(Property property) {
Property targetProperty = targetDescriptor
.getProperty(property.getName());
targetProperty.writeProperty(target, null, property.readProperty(source));
return true;
}
});