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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.VaadinBrowserSpecificOverrides" />
  11. <source path="client" />
  12. <source path="shared" />
  13. <!-- Use own Scheduler implementation to be able to track if commands
  14. are running -->
  15. <replace-with class="com.vaadin.client.VSchedulerImpl">
  16. <when-type-is class="com.google.gwt.core.client.impl.SchedulerImpl" />
  17. </replace-with>
  18. <replace-with class="com.vaadin.client.VDebugConsole">
  19. <when-type-is class="com.vaadin.client.Console" />
  20. </replace-with>
  21. <generate-with
  22. class="com.vaadin.server.widgetsetutils.AcceptCriteriaFactoryGenerator">
  23. <when-type-is class="com.vaadin.client.ui.dd.VAcceptCriterionFactory" />
  24. </generate-with>
  25. <generate-with
  26. class="com.vaadin.server.widgetsetutils.ConnectorBundleLoaderFactory">
  27. <when-type-assignable
  28. class="com.vaadin.client.metadata.ConnectorBundleLoader" />
  29. </generate-with>
  30. <!-- Set vaadin.profiler to true to include profiling support in the module -->
  31. <define-property name="vaadin.profiler" values="true,false" />
  32. <set-property name="vaadin.profiler" value="false" />
  33. <replace-with class="com.vaadin.client.Profiler.EnabledProfiler">
  34. <when-type-is class="com.vaadin.client.Profiler" />
  35. <when-property-is name="vaadin.profiler" value="true" />
  36. </replace-with>
  37. <!-- Use the new cross site linker to get a nocache.js without document.write -->
  38. <add-linker name="xsiframe" />
  39. </module>