aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2015-05-23 15:49:26 +0200
committerManolo Carrasco <manolo@apache.org>2015-05-23 15:50:24 +0200
commit83288de9a24fd7f65e9e731c90cee1651f62bd85 (patch)
treec6df38547a4ed2395adb22ecafa111c1b444435a /gwtquery-core
parent178fffc506ebeda6a15bda5ad3bcb21782419385 (diff)
downloadgwtquery-83288de9a24fd7f65e9e731c90cee1651f62bd85.tar.gz
gwtquery-83288de9a24fd7f65e9e731c90cee1651f62bd85.zip
Fix JsInterop in 2.8-SNAPSHOT
Diffstat (limited to 'gwtquery-core')
-rw-r--r--gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java8
1 files changed, 4 insertions, 4 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);
}