Content
<module rename-to=’sample’>
<inherits name=’com.google.gwt.user.User’ />
<entry-point class=’com.sample.client.Sample’ />
<add-linker name=”xsiframe”/>
</module>
o The module descriptor above is save to a file called:
sample.gwt.xml
o Use “rename-to” simplify the directory name
generated after GWT compiles. If we don’t use it,
the directory would be:
com.sample.Sample, rename-to makes it: sample.
o <inherits name=’com.google.gwt.user.User’ />
That’s the basic necessary inherited gwt modules
o <entry-point class=’com.sample.client.Sample’ />
The “entry-point” is the main, or boot point, where
gwt will start our application .The modue is stored in the
package: com.sample.client
o <add-linker name=”xsiframe”/>
We need this to run our application in super
development mode- more on this in our
“Super Development Mode” tutorial