Adds GWT.getVersion() which returns (in hosted mode) the version of GWT that is running or (in web mode) the version of GWT the app was compiled with.
Suggested by: fredsa
Review by: jat (desk check)
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@1705 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/shell/ShellGWT.java b/dev/core/src/com/google/gwt/dev/shell/ShellGWT.java
index 00eb708..a38cea1 100644
--- a/dev/core/src/com/google/gwt/dev/shell/ShellGWT.java
+++ b/dev/core/src/com/google/gwt/dev/shell/ShellGWT.java
@@ -15,6 +15,8 @@
*/
package com.google.gwt.dev.shell;
+import com.google.gwt.dev.About;
+
/**
* This class is the hosted-mode peer for {@link com.google.gwt.core.client.GWT}.
*/
@@ -28,6 +30,10 @@
return o != null ? o.getClass().getName() : null;
}
+ public static String getVersion() {
+ return About.GWT_VERSION_NUM;
+ };
+
public static void log(String message, Throwable e) {
JavaScriptHost.log(message, e);
}
diff --git a/user/src/com/google/gwt/core/client/GWT.java b/user/src/com/google/gwt/core/client/GWT.java
index 96b1265..eefc2c1 100644
--- a/user/src/com/google/gwt/core/client/GWT.java
+++ b/user/src/com/google/gwt/core/client/GWT.java
@@ -23,7 +23,8 @@
public final class GWT {
/*
* This is the web mode version of this class. Because it's so special,
- * there's also a hosted mode version. See GWT.java-hosted.
+ * there's also a hosted mode version. See GWT.java-hosted. Do NOT change the
+ * public API of this class without also updating GWT.java-hosted!
*/
/**
@@ -122,6 +123,10 @@
return sUncaughtExceptionHandler;
}
+ public static native String getVersion() /*-{
+ return $gwt_version;
+ }-*/;
+
/**
* Determines whether or not the running program is script or bytecode.
*/
diff --git a/user/src/com/google/gwt/core/client/GWT.java-hosted b/user/src/com/google/gwt/core/client/GWT.java-hosted
index b9e8979..54d31d3 100644
--- a/user/src/com/google/gwt/core/client/GWT.java-hosted
+++ b/user/src/com/google/gwt/core/client/GWT.java-hosted
@@ -59,6 +59,10 @@
return sUncaughtExceptionHandler;
}
+ public static String getVersion() {
+ return ShellGWT.getVersion();
+ };
+
public static boolean isScript() {
// false in hosted mode
return false;