1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <module rename-to='gdl_widgets'> |
---|
3 | <!-- Inherit the core Web Toolkit stuff. --> |
---|
4 | <inherits name='com.google.gwt.user.User'/> |
---|
5 | <inherits name="com.google.gwt.http.HTTP" /> |
---|
6 | |
---|
7 | <!-- Inherit the default GWT style sheet. You can change --> |
---|
8 | <!-- the theme of your GWT application by uncommenting --> |
---|
9 | <!-- any one of the following lines. --> |
---|
10 | <inherits name='com.google.gwt.user.theme.clean.Clean'/> |
---|
11 | <!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> --> |
---|
12 | <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> --> |
---|
13 | <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> --> |
---|
14 | |
---|
15 | <!-- Other module inherits --> |
---|
16 | <inherits name='us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine' /> |
---|
17 | <inherits name="com.google.gwt.json.JSON" /> |
---|
18 | <inherits name="com.google.gwt.http.HTTP" /> |
---|
19 | |
---|
20 | <!-- Specify the app entry point class. --> |
---|
21 | <entry-point class='us.isidor.gdl.anaToMia.Widgets.base.TestClass'/> |
---|
22 | <!-- <entry-point class="us.isidor.gdl.anaToMia.Widgets.isidorus.HashObjectUi"/> --> |
---|
23 | <!-- <ntry-point class="us.isidor.gdl.anaToMia.Widgets.isidorus.EnvironmentUi"/> --> |
---|
24 | <!-- <entry-point class='us.isidor.gdl.anaToMia.Widgets.isidorus.IsidorusEntryPoint'/> --> |
---|
25 | |
---|
26 | |
---|
27 | <!-- Specify the paths for translatable code --> |
---|
28 | <source path="base"/> |
---|
29 | <source path="view"/> |
---|
30 | <source path="text"/> |
---|
31 | <source path="container"/> |
---|
32 | <source path="environment"/> |
---|
33 | <source path="value"/> |
---|
34 | <source path="isidorus"/> |
---|
35 | <source path="complexData"/> |
---|
36 | <source path="button"/> |
---|
37 | |
---|
38 | |
---|
39 | <!-- Reference the javascript file that is necessary for tmjs --> |
---|
40 | <script src="lib/tm.min.js" /> |
---|
41 | |
---|
42 | <!-- only for debugging --> |
---|
43 | <!--<script src="lib/tm.js"/> --> |
---|
44 | </module> |
---|