Changes between Version 4 and Version 5 of UTGBCore/DeveloperGuide


Ignore:
Timestamp:
10/12/07 20:48:18 (18 years ago)
Author:
leo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UTGBCore/DeveloperGuide

    v4 v5  
    55= Getting Started =
    66
     7 * Folder structure
     8{{{
     9src/main/java       source codes
     10src/main/resources  resource folder
     11src/test/java       test codes
     12src/test/resources  resources for testing
    713
     14src/gwt-test        gwt-test codes
    815
     16tomcat              GWT shell uses this folder to launch GWT-embedded tomcat server.
     17                    To change the web application  configuration, edit tomcat/webapps/ROOT/WEB-INF/web.xml, or tomcat/conf/gwt/localhost/(context path).xml etc.
     18
     19www                 GWT-compiled javascript codes will be generated into this folder
     20eclipse             eclipse program launch files
     21
     22target              compiled class files or other generated files will be placed here
     23
     24}}}
     25