From Erwin...
after a small patch to your sources i got it working. i had to add toCreateProperties.java:104
boolean isScalar = ScalarType.class.isAssignableFrom(propertyType);
and line 111 is now: } else if (isPrimative || isByteArray || javaType || isScalar) {
thanks
Fixed
I wonder if this is correct... in that...
... should really be...
ScalarType scalarType = typeManager.getScalarType(propertyType)boolean isScalar = (scalarType != null);
... so I need to make typeManager available to the CreateProperties object...