diff options
author | Manolo Carrasco <manolo@apache.org> | 2015-05-23 15:49:26 +0200 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2015-05-23 15:50:24 +0200 |
commit | 83288de9a24fd7f65e9e731c90cee1651f62bd85 (patch) | |
tree | c6df38547a4ed2395adb22ecafa111c1b444435a | |
parent | 178fffc506ebeda6a15bda5ad3bcb21782419385 (diff) | |
download | gwtquery-83288de9a24fd7f65e9e731c90cee1651f62bd85.tar.gz gwtquery-83288de9a24fd7f65e9e731c90cee1651f62bd85.zip |
Fix JsInterop in 2.8-SNAPSHOT
-rw-r--r-- | gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java | 8 | ||||
-rw-r--r-- | pom.xml | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java index 1a3ebf68..a01a9923 100644 --- a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java +++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java @@ -58,23 +58,23 @@ public class GQueryJsInteropTestGwt extends GWTTestCase { } } - @JsType(prototype = "Window", isNative = true) + @JsType(prototype = "Window") public interface HTMLWindow { @JsProperty String getName(); @JsProperty void setName(String name); } - @JsType(prototype = "Window", isNative = true) + @JsType(prototype = "Window") public interface HWindow { @JsProperty HDocument document(); } - @JsType(prototype = "HTMLDocument", isNative = false) + @JsType(prototype = "HTMLDocument") public interface HDocument { HElement createElement(String tag); } - @JsType(prototype = "HTMLElement", isNative = false) + @JsType(prototype = "HTMLElement") public interface HElement { @JsProperty void id(String s); } @@ -146,8 +146,8 @@ </repositories> <properties> - <gwtversion>2.7.0</gwtversion> - <gwtmaven>2.7.0</gwtmaven> + <gwtversion>2.8.0-SNAPSHOT</gwtversion> + <gwtmaven>2.8.0-SNAPSHOT</gwtmaven> <gqueryclassifier /> <gwt.loglevel>INFO</gwt.loglevel> <gwt.outputstyle>OBF</gwt.outputstyle> |