You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Vaadin.gwt.xml 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <module>
  2. <!-- This GWT module inherits all Vaadin client side functionality modules.
  3. This is the module you want to inherit in your client side project to be
  4. able to use com.vaadin.* classes. -->
  5. <!-- Hint for WidgetSetBuilder not to automatically update the file -->
  6. <!-- WS Compiler: manually edited -->
  7. <inherits name="com.google.gwt.user.User" />
  8. <inherits name="com.google.gwt.http.HTTP" />
  9. <inherits name="com.google.gwt.json.JSON" />
  10. <inherits name="com.vaadin.terminal.gwt.VaadinBrowserSpecificOverrides" />
  11. <source path="terminal/gwt/client" />
  12. <source path="shared" />
  13. <!-- Use own Scheduler implementation to be able to track if commands are
  14. running -->
  15. <replace-with class="com.vaadin.terminal.gwt.client.VSchedulerImpl">
  16. <when-type-is class="com.google.gwt.core.client.impl.SchedulerImpl" />
  17. </replace-with>
  18. <!-- Generators for serializators for classes used in communication between
  19. server and client -->
  20. <generate-with
  21. class="com.vaadin.terminal.gwt.widgetsetutils.SerializerMapGenerator">
  22. <when-type-is
  23. class="com.vaadin.terminal.gwt.client.communication.SerializerMap" />
  24. </generate-with>
  25. <replace-with class="com.vaadin.terminal.gwt.client.VDebugConsole">
  26. <when-type-is class="com.vaadin.terminal.gwt.client.Console" />
  27. </replace-with>
  28. <generate-with
  29. class="com.vaadin.terminal.gwt.widgetsetutils.EagerWidgetMapGenerator">
  30. <when-type-is class="com.vaadin.terminal.gwt.client.WidgetMap" />
  31. </generate-with>
  32. <generate-with
  33. class="com.vaadin.terminal.gwt.widgetsetutils.AcceptCriteriaFactoryGenerator">
  34. <when-type-is
  35. class="com.vaadin.terminal.gwt.client.ui.dd.VAcceptCriterionFactory" />
  36. </generate-with>
  37. <!-- Generate client side proxies for client to server RPC interfaces -->
  38. <generate-with
  39. class="com.vaadin.terminal.gwt.widgetsetutils.RpcProxyGenerator">
  40. <when-type-assignable
  41. class="com.vaadin.shared.communication.ServerRpc" />
  42. </generate-with>
  43. <!-- Generate client side proxies for client to server RPC interfaces -->
  44. <generate-with
  45. class="com.vaadin.terminal.gwt.widgetsetutils.RpcProxyCreatorGenerator">
  46. <when-type-assignable
  47. class="com.vaadin.terminal.gwt.client.communication.RpcProxy.RpcProxyCreator" />
  48. </generate-with>
  49. <!-- Generate client side RPC manager for server to client RPC -->
  50. <generate-with
  51. class="com.vaadin.terminal.gwt.widgetsetutils.GeneratedRpcMethodProviderGenerator">
  52. <when-type-assignable
  53. class="com.vaadin.terminal.gwt.client.communication.GeneratedRpcMethodProvider" />
  54. </generate-with>
  55. <generate-with
  56. class="com.vaadin.terminal.gwt.widgetsetutils.ConnectorWidgetFactoryGenerator">
  57. <when-type-assignable
  58. class="com.vaadin.terminal.gwt.client.ui.ConnectorWidgetFactory" />
  59. </generate-with>
  60. <generate-with
  61. class="com.vaadin.terminal.gwt.widgetsetutils.ConnectorStateFactoryGenerator">
  62. <when-type-assignable
  63. class="com.vaadin.terminal.gwt.client.ui.ConnectorStateFactory" />
  64. </generate-with>
  65. <!-- Use the new cross site linker to get a nocache.js without document.write -->
  66. <add-linker name="xsiframe" />
  67. </module>