org.jboss.seam.example.remoting.gwt.client |
|
Java Source File Name | Type | Comment |
AskQuestionWidget.java | Class | This shows how to do a a "composite" widget in GWT, as well as how to call back to the server. |
HelloWorld.java | Class | This is the "main" entry point, as per GWT. |
MyService.java | Interface | This is a GWT service, which will be implemented as a Seam component on the server
(see the server package). |
MyServiceAsync.java | Interface | This is the interface the client code uses. |
ValidationUtility.java | Class | This simple validation utility shows how you can have the same code on the "client"
as on the server (ie the server can re-use some code from the client - one of the GWT advantages). |