diff options
author | Manolo Carrasco <manolo@apache.org> | 2014-01-20 09:18:30 +0100 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2014-01-20 09:18:30 +0100 |
commit | 7a5db3ca23d4db216aa705d0a9790293a672adc0 (patch) | |
tree | 25a286746c4f7a8a2577fc5aa020f40e9b893a84 | |
parent | a6e942e71cdf9111544f9c6551c87112af6171c4 (diff) | |
download | gwtquery-7a5db3ca23d4db216aa705d0a9790293a672adc0.tar.gz gwtquery-7a5db3ca23d4db216aa705d0a9790293a672adc0.zip |
merge
-rw-r--r-- | gwtquery-core/src/test/java/com/google/gwt/query/client/dbinding/DataBindingTestJre.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/dbinding/DataBindingTestJre.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/dbinding/DataBindingTestJre.java index 9fa9a555..ac648fc1 100644 --- a/gwtquery-core/src/test/java/com/google/gwt/query/client/dbinding/DataBindingTestJre.java +++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/dbinding/DataBindingTestJre.java @@ -35,8 +35,12 @@ public class DataBindingTestJre extends GWTTestCase { } public interface Item extends JsonBuilder { + public static enum Type {BIG, SMALL} + Date getDate(); void setDate(Date d); + Type getType(); + void setType(Type t); } public interface JsonExample extends JsonBuilder { |