]> source.dussan.org Git - gwtquery.git/commitdiff
update super and generator implementation with new refactored names
authorManolo Carrasco <manolo@apache.org>
Mon, 27 Jan 2014 12:18:48 +0000 (13:18 +0100)
committerManolo Carrasco <manolo@apache.org>
Mon, 27 Jan 2014 12:18:48 +0000 (13:18 +0100)
gwtquery-core/src/main/java/com/google/gwt/query/rebind/JsonBuilderGenerator.java
gwtquery-core/src/main/super/com/google/gwt/query/super/com/google/gwt/query/client/GQ.java

index 729f3a46344c8cbc2b891dc5237bcc5a79a874e5..270db7046a6cabcd3781e6a47e9014765a5abc36 100644 (file)
@@ -322,12 +322,12 @@ public class JsonBuilderGenerator extends Generator {
     sw.println("return null;");
     sw.outdent();
     sw.println("}");
-    sw.println("public Binder create(String s) {");
+    sw.println("public " + IsProperties.class.getName() + " create(String s) {");
     sw.indent();
     sw.println("return " + Properties.class.getName() + ".create(s);");
     sw.outdent();
     sw.println("}");
-    sw.println("public Binder create() {");
+    sw.println("public " + IsProperties.class.getName() + " create() {");
     sw.indent();
     sw.println("return " + Properties.class.getName() + ".create();");
     sw.outdent();
index 732d290254e845df80fc6319820614bda61004b6..7f8fb42e9b1427ea164145192f7622c3a7666e7e 100644 (file)
@@ -16,7 +16,7 @@
 package com.google.gwt.query.client;
 
 import com.google.gwt.core.shared.GWT;
-import com.google.gwt.query.client.Binder;
+import com.google.gwt.query.client.IsProperties;
 import com.google.gwt.query.client.builders.JsonBuilder;
 import com.google.gwt.query.client.builders.JsonFactory;
 import com.google.gwt.query.client.plugins.ajax.AjaxTransportJs;
@@ -40,11 +40,11 @@ public class GQ {
     return ret;
   }
   
-  public static Binder create(String s) {
+  public static IsProperties create(String s) {
     return getFactory().create(s);
   }
 
-  public static Binder create() {
+  public static IsProperties create() {
     return getFactory().create();
   }