Advertisement
Guest User

mygwtp.gwt.xml

a guest
Feb 22nd, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.29 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8'?>
  2. <module rename-to='mygwtp'>
  3.     <!-- Inherit the core Web Toolkit stuff.                        -->
  4.     <inherits name='com.google.gwt.user.User'/>
  5.     <inherits name='com.google.gwt.inject.Inject'/>
  6.     <inherits name='com.google.gwt.resources.Resources'/>
  7.  
  8.     <!-- Inherit the default GWT style sheet.  You can change       -->
  9.     <!-- the theme of your GWT application by uncommenting          -->
  10.     <!-- any one of the following lines.                            -->
  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='com.gwtplatform.mvp.Mvp'/>
  17.     <inherits name='com.gwtplatform.dispatch.Dispatch'/>
  18.  
  19.     <!-- Specify the app entry point class.                         -->
  20.     <entry-point class='com.mygwtp.client.Mygwtp'/>
  21.  
  22.     <!-- Specify the paths for translatable code                    -->
  23.     <source path='client'/>
  24.     <source path='shared'/>
  25.  
  26.     <define-configuration-property name='gin.ginjector' is-multi-valued='false' />
  27.     <set-configuration-property name='gin.ginjector' value='com.mygwtp.client.gin.ClientGinjector' />
  28.  
  29. </module>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement