Hello.
I'm trying to make changes to my model class. I have a class called
Product that has a field category, which is a String.
public class Product {
...
private String category;
...
}
Now, I've decided that a Product can have different categories. I made
the field a List instead of a String. My problem is, when I check with
the data viewer, the changes don't get reflected. When I try to create
an entity through the data viewer, I still can't see the categories
field.
I've also tried just adding categories as new field such that the
model has both category and categories, but still no 'categories' when
I tried to create a new entity.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" 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-appengine-java?hl=en.