From 83288de9a24fd7f65e9e731c90cee1651f62bd85 Mon Sep 17 00:00:00 2001 From: Manolo Carrasco Date: Sat, 23 May 2015 15:49:26 +0200 Subject: Fix JsInterop in 2.8-SNAPSHOT --- .../java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gwtquery-core') 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); } -- cgit v1.2.3