Our application uses a concept of 'complex data types' to represent
values/properties of an object. Simply put, we have a 'MyInteger' variant
for 'Integer' values, a 'MyDouble' variant for 'Double' values .... (none of
them actually extends these types, they are rather wrappers). Our data
object thus contain a number of fields who are all typed as these
'MyInteger', 'MyDouble' types.
I am trying to re-use our data model objects as entity proxies, which is
working fine except that the values of these 'fields' are only returned when
I use the '.with("propertyName")' method on my request context instance.
That approach is not really workable for me as we have many of these fields
on all of our data objects.
I do understand that in many cases, the experienced behavior is actually
what you want (=retrieve objects on demand).
I have done some digging around in this group as well as on the internet in
general, but was not able to find a solution for my problem. I was hoping
that anyone from the GWT team has some input on how I can get around this
behavior.
Many thanks!
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.