]> source.dussan.org Git - gwtquery.git/commitdiff
merge
authorManolo Carrasco <manolo@apache.org>
Mon, 20 Jan 2014 08:18:30 +0000 (09:18 +0100)
committerManolo Carrasco <manolo@apache.org>
Mon, 20 Jan 2014 08:18:30 +0000 (09:18 +0100)
gwtquery-core/src/test/java/com/google/gwt/query/client/dbinding/DataBindingTestJre.java

index 9fa9a5556ae90ef60aacd2a32c472d57f1c17807..ac648fc1cff3b39b048b21702a26f7375268539c 100644 (file)
@@ -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 {