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.5KB

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