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 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.AcceptCriteriaFactoryGenerator">
  30. <when-type-is
  31. class="com.vaadin.terminal.gwt.client.ui.dd.VAcceptCriterionFactory" />
  32. </generate-with>
  33. <generate-with class="com.vaadin.terminal.gwt.widgetsetutils.ConnectorBundleLoaderFactory">
  34. <when-type-assignable class="com.vaadin.terminal.gwt.client.metadata.ConnectorBundleLoader" />
  35. </generate-with>
  36. <!-- Use the new cross site linker to get a nocache.js without document.write -->
  37. <add-linker name="xsiframe" />
  38. </module>