Hi,
that is my situation:
I've got a base class
...
public class Recipe {
...
public static List<Recipe> findAllRecipes() ....
}
and some child classes
...
public class Appetizer extends Recipe {
...
}
...
I managed to store different recipe objects (Appetizer, Deserts etc)
in the datastore.
When I call "findAllRecipes()" through the requestFactory i expect
only objects that are derived from the class recipe. But all returned
objects are of class recipe and i can't distinguish them. When I list
the classnames of the fetched objects on the server-side I see the
correct classenames for the objects.
I works find in my server-side unit tests but not with the
requestFactory.
Is this a bug or am i doing something wrong.
Thanks for any help...
--
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.