* This {@link EntryPoint} will receive control if Gears is not available on the
* browser that will run the application.
*/
public class DatabaseDemoNoGears implements EntryPoint {
public void onModuleLoad() {
RootPanel rootPanel = RootPanel.get("demo");
rootPanel.add(new HTML(
"<font color=\"red\">ERROR: This browser does not support Google Gears."
+ " Please install Gears and reload the application."
+ " Note that GWT Gears applications can only be debugged in hosted mode on Windows.</font>"));
}