summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml')
-rw-r--r--src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml b/src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml
new file mode 100644
index 0000000000..1606dea3c3
--- /dev/null
+++ b/src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml
@@ -0,0 +1,29 @@
+<module>
+ <!--
+ This GWT module defines the IT Mill Toolkit DefaultWidgetSet. This is
+ the module you want to extend when creating an extended widget set, or
+ when creating a specialized widget set with a subset of the
+ components.
+ -->
+ <!--
+ NOTE that your WidgetSet entry-point (.java) should have the same
+ "logical" name (a.k.a SimpleName) as the specification (.gwt.xml).
+ -->
+ <!--
+ E.g: com/example/gwt/MyWidgetSet.gwt.xml should point to the
+ entry-point
+ com.example.gwt.client[.some.package].MyWidgetSet.java
+ -->
+
+ <inherits name="com.google.gwt.user.User" />
+
+ <inherits name="com.google.gwt.http.HTTP" />
+
+ <inherits name="com.google.gwt.xml.XML" />
+
+ <inherits name="com.google.gwt.json.JSON" />
+
+ <source path="client" />
+
+ <entry-point class="com.vaadin.terminal.gwt.client.DefaultWidgetSet" />
+</module>