https://cloud.google.com/eclipse/docs/migrating-gpe#app_engine_gwt says that
App Engine code runs on the server, and GWT code runs on the client, though it's compiled and served from the server. Ideally you should divide these into separate projects: an App Engine Eclipse project and a GWT Eclipse project.
Is there any doc about how to do this seperation?
How to handle GWT-RPC? For example, XService.java and XServiceAsync.java is at clientside but XServiceImpl.java is at serverside, will it be in App Engine project?)