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.

DefaultWidgetSet.gwt.xml 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.1//EN" "http://gwtproject.org/doctype/2.8.1/gwt-module.dtd">
  3. <module>
  4. <!-- This GWT module defines the Vaadin DefaultWidgetSet. This is the module
  5. you want to extend when creating an extended widget set, or when creating
  6. a specialized widget set with a subset of the components. -->
  7. <!-- Hint for WidgetSetBuilder not to automatically update the file -->
  8. <!-- WS Compiler: manually edited -->
  9. <inherits name="com.vaadin.Vaadin" />
  10. <inherits name="elemental.Elemental" />
  11. <inherits name="com.google.gwt.precompress.Precompress" />
  12. <entry-point class="com.vaadin.client.ApplicationConfiguration" />
  13. <generate-with
  14. class="com.vaadin.server.widgetsetutils.AcceptCriteriaFactoryGenerator">
  15. <when-type-is class="com.vaadin.client.ui.dd.VAcceptCriterionFactory" />
  16. </generate-with>
  17. <generate-with
  18. class="com.vaadin.server.widgetsetutils.ConnectorBundleLoaderFactory">
  19. <when-type-assignable
  20. class="com.vaadin.client.metadata.ConnectorBundleLoader" />
  21. </generate-with>
  22. <replace-with class="com.vaadin.client.communication.DefaultReconnectDialog">
  23. <when-type-is class="com.vaadin.client.communication.ReconnectDialog" />
  24. </replace-with>
  25. <replace-with class="com.vaadin.client.ui.VOverlay">
  26. <when-type-is class="com.vaadin.client.widgets.Overlay" />
  27. </replace-with>
  28. <!-- Since 7.2. Compile all permutations (browser support) into one Javascript
  29. file. Speeds up compilation and does not make the Javascript significantly
  30. larger. -->
  31. <collapse-all-properties />
  32. </module>