public class CloudCodex implements EntryPoint {
/**
* This is the entry point method.
*/
public void onModuleLoad() {
Mvp4gModule module = (Mvp4gModule) GWT.create(Mvp4gModule.class);
module.createAndStartModule();
RootLayoutPanel.get().add((IsWidget) module.getStartView());
}