Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Vaadin.gwt.xml 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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="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.widgetsetutils.AcceptCriteriaFactoryGenerator">
  23. <when-type-is class="com.vaadin.client.ui.dd.VAcceptCriterionFactory" />
  24. </generate-with>
  25. <generate-with
  26. class="
  27. com.vaadin.server.widgetsetutils.ConnectorBundleLoaderFactory ">
  28. <when-type-assignable
  29. class="com.vaadin.client.metadata.ConnectorBundleLoader" />
  30. </generate-with>
  31. <!-- Use the new cross site linker to get a nocache.js without document.write -->
  32. <add-linker name="xsiframe " />
  33. </module>