public class EntrypointDispatcher implements EntryPoint {
public void onModuleLoad() {
try {
EntryPointFactory u = (EntryPointFactory) GWT
.create(EntryPointFactory.class);
u.onModuleLoad();
} catch (Exception exception) {
exception.printStackTrace();
}
}