Changeset 481
- Timestamp:
- 06/15/11 15:48:20 (14 years ago)
- 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 13 13 14 14 <!-- Other module inherits --> 15 15 16 16 17 <!-- Specify the app entry point class. --> … … 18 19 19 20 <!-- 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> 23 25 </module> -
TabularUnified branches/gdl-frontend/playground/GWT-JSNI/GWT-JSNI-example/src/gdl/isidor/us/client/GWT_JSNI_example.java ¶
r478 r481 1 1 package gdl.isidor.us.client; 2 3 4 import gdl.isidor.us.TopicMaps.TmEngine; 2 5 3 6 import com.google.gwt.core.client.EntryPoint; … … 50 53 @Override 51 54 public void onClick(ClickEvent event) { 52 55 Window.alert("test 1"); 56 TmEngine tme = new TmEngine(); 57 Window.alert(tme.toString()); 58 TmEngine.jHello(); 53 59 } 54 60 }); -
TabularUnified branches/gdl-frontend/playground/GWT-JSNI/GWT-JSNI-example/war/GWT_JSNI_example.html ¶
r476 r481 19 19 <!-- --> 20 20 <title>GWT/JSNI with tmjs</title> 21 21 22 22 23 <!-- -->
Note: See TracChangeset
for help on using the changeset viewer.