Changeset 481


Ignore:
Timestamp:
06/15/11 15:48:20 (14 years ago)
Author:
lgiessmann
Message:
 
Location:
branches/gdl-frontend/playground/GWT-JSNI/GWT-JSNI-example
Files:
33 added
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/gdl-frontend/playground/GWT-JSNI/GWT-JSNI-example/src/gdl/isidor/us/GWT_JSNI_example.gwt.xml

    r475 r481  
    1313
    1414  <!-- Other module inherits                                      -->
     15 
    1516
    1617  <!-- Specify the app entry point class.                         -->
     
    1819
    1920  <!-- Specify the paths for translatable code                    -->
    20   <source path='client'/>
    21   <source path='shared'/>
    22 
     21  <source path='TopicMaps'/>
     22  <source path="client"/>
     23 
     24  <script src="external/tm.min.js"></script>
    2325</module>
  • TabularUnified branches/gdl-frontend/playground/GWT-JSNI/GWT-JSNI-example/src/gdl/isidor/us/client/GWT_JSNI_example.java

    r478 r481  
    11package gdl.isidor.us.client;
     2
     3
     4import gdl.isidor.us.TopicMaps.TmEngine;
    25
    36import com.google.gwt.core.client.EntryPoint;
     
    5053                        @Override
    5154                        public void onClick(ClickEvent event) {
    52                                
     55                                Window.alert("test 1");
     56                                TmEngine tme = new TmEngine();
     57                                Window.alert(tme.toString());
     58                                TmEngine.jHello();
    5359                        }
    5460                });
  • TabularUnified branches/gdl-frontend/playground/GWT-JSNI/GWT-JSNI-example/war/GWT_JSNI_example.html

    r476 r481  
    1919    <!--                                           -->
    2020    <title>GWT/JSNI with tmjs</title>
     21   
    2122   
    2223    <!--                                           -->
Note: See TracChangeset for help on using the changeset viewer.